:root {
    --primary-color: #0056b3; /* Professional Darker Blue */
    --accent-color: #4caf50; /* Professional Green */
    --light-bg: #ffffff;
    --section-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.bg-light {
    background-color: var(--section-bg);
}

.accent {
    color: var(--accent-color);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* News Ticker */
.news-ticker-section {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ticker-label {
    background: #fee2e2;
    color: #ef4444;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 1px;
}

.ticker-text {
    flex-grow: 1;
    font-size: 0.95rem;
}

.ticker-text a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.ticker-text a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .ticker-content { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('dxindia_hero_banner_1778920959759.png') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background: linear-gradient(45deg, var(--primary-color), #00d2ff);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.4);
}

.btn.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 1rem;
}

.btn.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Sections Global */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.testimonial-card {
    background: var(--section-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

/* Objectives Section */
.objectives-section {
    margin-top: 6rem;
}

.sub-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.objective-item {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.obj-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.objective-item h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.objective-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* IOTA List */
.iota-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.iota-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: block;
    text-decoration: none;
    color: inherit;
}

.iota-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.iota-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.iota-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.iota-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Activities Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.activity-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: block;
    text-decoration: none;
    color: inherit;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 2.5rem;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    list-style: none;
    margin-top: 1rem;
}

.tags li {
    background: rgba(139, 195, 74, 0.2);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.activity-card.highlight {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border: 1px solid var(--primary-color);
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Registration Form */
.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--section-bg);
    padding: 5rem;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.registration-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 800;
}

.form-container {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.form-tabs {
    display: flex;
    background: #f1f5f9;
}

.tab-btn {
    flex: 1;
    padding: 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid var(--accent-color);
}

.registration-form {
    padding: 3rem;
    display: none;
}

.registration-form.active {
    display: block;
}

.registration-form h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

.form-footer a {
    color: var(--accent-color);
    text-decoration: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.full-width {
    width: 100%;
}

/* Affiliation */
.glass-card {
    background: var(--section-bg);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.glass-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.social-icons {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: var(--section-bg);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .registration-wrapper, .contact-grid {
        grid-template-columns: 1fr;
    }
    .registration-wrapper { padding: 3rem; }
}

@media (max-width: 768px) {
    .hero { height: auto; padding: 10rem 0 6rem; }
    .hero h1 { font-size: 2.8rem; }
    .nav-links { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .nav-links.active { display: flex; animation: slideDown 0.4s ease-out; }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .menu-toggle { display: block; cursor: pointer; }
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        margin: 5px 0;
        transition: 0.4s;
    }
    .hero-btns { display: flex; flex-direction: column; gap: 1rem; }
    .btn.secondary { margin-left: 0; }
}

/* New Content Sections */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: #e2e8f0;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.member-info p {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.faq-section {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 500px;
    border-top: 1px solid var(--border-color);
}

/* Donation Section */
#donation {
    background: #f8fafc;
    background: radial-gradient(circle at 10% 20%, rgba(0, 86, 179, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 40%);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.donation-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5rem;
    border-radius: 48px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
    z-index: 2;
}

.donation-icon-wrapper {
    margin-bottom: 2rem;
}

.donation-icon-wrapper img {
    height: 120px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.donation-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.intro-text {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.disclaimer-box {
    background: #f1f5f9;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.disclaimer-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.heart-icon {
    font-size: 1.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
}

.donation-action {
    background: transparent;
    border: none;
    padding: 0;
}

.paypal-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #0070ba, #00d2ff) !important;
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(0, 112, 186, 0.2) !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.paypal-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 112, 186, 0.3) !important;
}

.pp-logo {
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1.5px;
    font-size: 1.4rem;
}

.payment-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1.5rem;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .donation-card { padding: 3rem 2rem; border-radius: 32px; }
    .donation-content h2 { font-size: 2.5rem; }
    .intro-text { font-size: 1.1rem; }
    .disclaimer-box { flex-direction: column; text-align: center; gap: 1rem; }
}

/* Dashboard & Membership Card */
.dashboard-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    width: 100%;
    grid-column: 1 / -1; /* Ensure it spans full width when visible */
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

/* Dashboard Alert Banner */
.dashboard-banner-alert {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.banner-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.banner-text h4 {
    color: #f59e0b;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.banner-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.membership-card {
    width: 100%;
    max-width: 400px;
    height: 240px;
    background: #0f172a; /* Sleek Dark Blue */
    background-image: radial-gradient(circle at 20% 20%, rgba(0, 86, 179, 0.15) 0%, transparent 40%),
                      radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 40%);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 1.5rem 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('logo.jpg') no-repeat center;
    background-size: 150%;
    opacity: 0.03;
    pointer-events: none;
}

.card-logo img {
    height: 50px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.card-details {
    display: grid;
    gap: 0.8rem;
}

.detail-row {
    display: flex;
    flex-direction: column;
}

.detail-row .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.detail-row .value {
    font-weight: 700;
    font-size: 1.1rem;
}

.card-footer {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-size: 0.7rem;
    opacity: 0.6;
    font-style: italic;
}

/* Resource Center */
.resource-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    overflow-x: auto;
}

.res-tab-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border-radius: 8px;
}

.res-tab-btn:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.res-tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.resource-pane {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.resource-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.res-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.res-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.res-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.res-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.res-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.res-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Gallery */
.qsl-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.qsl-item {
    text-align: center;
}

.qsl-item p {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Exclusive */
.exclusive-feature {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f59e0b;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
}

.exclusive-feature h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.exclusive-feature p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 80%;
}

.exclusive-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.exclusive-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Forum Coming Soon */
.coming-soon-box {
    text-align: center;
    padding: 4rem 2rem;
    background: #f1f5f9;
    border-radius: 24px;
    border: 2px dashed #cbd5e1;
}

.soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.launch-tag {
    display: inline-block;
    margin-top: 1rem;
    background: #e2e8f0;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
}

/* --- Event Page Enhancements --- */
.event-section {
    padding: 4rem 0;
}

.event-card {
    background: white;
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.info-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
}

.convention-item {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--event-blue);
    transition: all 0.2s ease;
}

.convention-item:hover {
    border-left-width: 10px;
    background: #f8fafc;
}

.registration-box h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--event-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.deadline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.accent-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border: 2px dashed var(--event-green);
    padding: 3rem;
    border-radius: 24px;
}

.event-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* --- Dashboard Enhancements --- */
.dashboard-grid-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.live-dashboard-wrapper {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.live-header h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.live-tabs {
    display: flex;
    background: #f8fafc;
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
}

.live-tab-btn {
    padding: 0.4rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.live-tab-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.live-pane {
    display: none;
    height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.live-pane.active {
    display: block;
}

/* Contest Cards */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.contest-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, border-color 0.2s;
}

.contest-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.contest-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.contest-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.contest-details {
    font-size: 0.8rem;
    color: #64748b;
}

/* News List */
.feed-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item .date {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 0.2rem;
    display: block;
}

.news-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.news-item h4 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}

.news-item h4 a:hover {
    color: var(--primary-color);
}

.news-item p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: #94a3b8;
    font-style: italic;
}

/* Scrollbar styling */
.live-pane::-webkit-scrollbar {
    width: 6px;
}

.live-pane::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.live-pane::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .dashboard-grid-row {
        grid-template-columns: 1fr;
    }
    
    .membership-card-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
