/* Membership Portal Specific Styles */
:root {
    --color-black: #000000;
    --color-sky-blue: #00BFFF;
    --color-gold: #FFD700;
    --color-white: #FFFFFF;
    --bg-card: #111111;
    --bg-input: #050505;
}

/* Auth Layout */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.auth-card {
    background: var(--bg-card);
    padding: 3rem;
    /* 48px */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-sky-blue));
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.auth-header p {
    color: #888;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-input);
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--color-white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-sky-blue);
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.1);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.form-footer a {
    color: var(--color-sky-blue);
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 40px 0;
}

.sidebar-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: fit-content;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: #222;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.status-active {
    background: rgba(0, 191, 255, 0.1);
    color: var(--color-sky-blue);
    border: 1px solid var(--color-sky-blue);
}

.status-pending {
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.status-rejected {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--bg-card);
    padding: 2.5rem;
    /* 40px */
    border-radius: 15px;
    border-left: 4px solid var(--color-sky-blue);
}

/* Division Link */
.division-join-card {
    background: linear-gradient(45deg, #000, #111);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--color-gold);
    text-align: center;
}

.division-icon {
    font-size: 3rem;
    color: #25D366;
    /* WhatsApp Green */
    margin-bottom: 15px;
}

/* Founders */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.founder-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.founder-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #222;
    /* Placeholder */
}

.founder-info {
    padding: 2.5rem;
    text-align: center;
}

.founder-role {
    color: var(--color-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Benefits List */
.benefit-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    color: var(--color-sky-blue);
    font-size: 1.5rem;
    min-width: 40px;
}

/* Admin Table */
.admin-table-container {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    color: #ccc;
}

.table th,
.table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table th {
    color: var(--color-gold);
    font-weight: 600;
}

.table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.action-btn {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    margin-right: 5px;
}

.btn-approve {
    background: rgba(0, 191, 255, 0.2);
    color: var(--color-sky-blue);
}

.btn-reject {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}