/* ==========================================================================
   1. Base Variables & Theming
   ========================================================================== */
    :root {
    /* Brand Colors extracted from Logo */
    --bg-primary: #050505;          /* Deep Black */
    --bg-secondary: #111111;        /* Dark Gray */
    --bg-tertiary: #1a1a1a;         /* Lighter Dark Gray */
    --bg-glass: rgba(255, 255, 255, 0.02);
    
    --text-primary: #ffffff;
    --text-secondary: #8c8c8c;
    
    --accent-primary: #b88645;      /* Brand Gold */
    --accent-secondary: #3b3b3b;    /* Brand Dark Gray/Charcoal */
    --accent-glow: rgba(184, 134, 69, 0.3);
    
    --border-glass: rgba(255, 255, 255, 0.05);
    --shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.8);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Metrics */
    --nav-height: 80px;
    --ticker-height: 0px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode Variables override */
[data-theme='light'] {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0f0f0;
    --bg-glass: rgba(255, 255, 255, 0.7);
    
    --text-primary: #111111;
    --text-secondary: #555555;
    
    --accent-primary: #b88645;      /* Brand Gold remains */
    --accent-secondary: #3b3b3b;    /* Brand Dark Gray */
    --accent-glow: rgba(184, 134, 69, 0.2);
    
    --border-glass: rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

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

/* ==========================================================================
   3. Utilities & Background Elements
   ========================================================================== */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: -1;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    bottom: -100px;
    right: -100px;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: 40%;
    left: 40%;
    opacity: 0.1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 150%;
    transition: all 0.6s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #ce9f5d); /* Lighter gold for gradient */
    color: #111; /* Dark text for contrast on gold button */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.7), 0 0 15px var(--accent-primary), inset 0 0 15px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   4. Header & Navigation Component
   ========================================================================== */
.header {
    position: fixed;
    top: var(--ticker-height);
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 6, 24, 0.85); /* Hardcoded dark for contrast, JS handles theme */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    height: 70px;
}

[data-theme='light'] .header.scrolled {
    background: rgba(248, 250, 252, 0.85);
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }
    to { text-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 25px var(--accent-primary); }
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    transform: rotate(15deg);
}

.lang-toggle {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: all var(--transition-fast);
}

.lang-toggle:hover {
    background: var(--bg-secondary);
    color: var(--accent-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* ==========================================================================
   5. Reading Progress Component
   ========================================================================== */
.reading-progress-container {
    position: fixed;
    top: var(--ticker-height);
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-primary), #e6bb7c);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.1s linear; /* Fast JS response */
}

/* ==========================================================================
   6. Media Queries (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-primary);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid var(--border-glass);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-normal);
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }

    [data-theme='light'] .nav-menu {
        box-shadow: -5px 0 30px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
        z-index: 1002; /* Above menu */
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ==========================================================================
   7. Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-primary), #e6bb7c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.arrow {
    margin-left: 8px;
    transition: transform var(--transition-fast);
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.active-users {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    background-size: cover;
    background-position: center;
    margin-left: -15px;
}

.avatar:first-child {
    margin-left: 0;
}

.user-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual (Orbiting Nodes) */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbital-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--border-glass);
}

.circle-1 { width: 300px; height: 300px; animation: spin 40s linear infinite; }
.circle-2 { width: 450px; height: 450px; animation: spin 60s linear infinite reverse; }
.circle-3 { width: 600px; height: 600px; animation: spin 80s linear infinite; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stats-center {
    position: absolute;
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-glass);
    z-index: 5;
}

.stats-center h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    line-height: 1;
}

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

.floating-nodes .node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    z-index: 10;
    overflow: hidden;
}

.floating-nodes .node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.node-1 { top: 20%; left: 10%; animation: float 6s ease-in-out infinite; }
.node-2 { bottom: 20%; right: 10%; animation: float 5s ease-in-out infinite 1s; }
.node-tech { top: 10%; right: 20%; animation: float 7s ease-in-out infinite 2s; font-weight: bold; color: var(--accent-primary); }
.node-design { bottom: 10%; left: 20%; animation: float 6s ease-in-out infinite 0.5s; font-size: 1.2rem; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ==========================================================================
   8. Stats Cards Section
   ========================================================================== */
.stats-cards-section {
    position: relative;
    margin-top: -50px;
    z-index: 10;
    padding-bottom: 5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-glass);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.glass-panel:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.glass-panel h3 {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.glass-panel p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-glass);
    padding-top: 4rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    font-weight: bold;
    color: var(--text-secondary);
}

.social-icons a:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Overrides */
/* ==========================================================================
   10. About Us Section
   ========================================================================== */
.about-section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

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

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-glass);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    margin-bottom: 2rem;
}

.timeline-item.right {
    margin-left: 50%;
    padding-left: 3rem;
    padding-right: 0;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 50%;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--accent-glow);
    z-index: 2;
}

.timeline-item.right .timeline-dot {
    left: -10px;
}

.timeline-content {
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Committees */
.committees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.committee-card {
    position: relative;
    overflow: hidden;
    padding: 3rem 1.5rem;
    cursor: pointer;
}

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

.committee-card h4 {
    font-size: 1.2rem;
    margin: 0;
}

.committee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-tertiary), rgba(28, 16, 63, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.committee-card:hover .committee-overlay {
    opacity: 1;
    transform: translateY(0);
}

.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* ==========================================================================
   11. Events Section
   ========================================================================== */
.events-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.event-countdown-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

.event-countdown-box h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.event-date-text {
    color: var(--accent-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-val {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    min-width: 80px;
    border: 1px solid var(--border-glass);
}

.time-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.colon {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-secondary);
    margin-top: -30px;
}

/* Events Gallery */
.events-gallery {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    text-align: left;
    font-weight: 600;
    font-size: 1.2rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   12. Join Us (Registration Form)
   ========================================================================== */
.join-section {
    padding: 6rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: var(--border-glass);
    z-index: 0;
}

.form-progress .step {
    position: relative;
    z-index: 1;
    background: var(--bg-tertiary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    transition: all var(--transition-normal);
}

.form-progress .step.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

.form-step {
    display: none;
    animation: fadeIn var(--transition-normal);
}

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

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

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

[data-theme='light'] .form-group input,
[data-theme='light'] .form-group select,
[data-theme='light'] .form-group textarea {
    background: rgba(255,255,255,0.8);
    color: var(--text-primary);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 0 15px var(--accent-glow), inset 0 0 5px rgba(212, 175, 55, 0.2);
    transform: scale(1.02);
}

.form-action {
    margin-top: 2rem;
}

.form-action.double {
    display: flex;
    justify-content: space-between;
}

.text-right { text-align: right; }

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}
.btn-secondary:hover {
    background: var(--bg-secondary);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   13. Resources Section
   ========================================================================== */
.resources-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.resource-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-img {
    height: 200px;
    width: 100%;
    position: relative;
}

.resource-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.resource-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
}

.resource-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.resource-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.resource-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more {
    color: var(--accent-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more:hover .arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   14. Contact Page
   ========================================================================== */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-card .icon {
    font-size: 2rem;
    color: var(--accent-primary);
}

.social-links-card {
    padding: 2rem;
}

/* ==========================================================================
   15. Teams Page
   ========================================================================== */
.teams-section {
    padding: 6rem 0;
}

.teams-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.team-group {
    background: rgba(0,0,0,0.1);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-glass);
}

.team-header {
    margin-bottom: 2.5rem;
}

.team-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.team-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.leaders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.leader-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

.leader-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

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

.leader-role.highlight-text {
    font-weight: 600;
}

.members-header {
    margin: 3rem 0 1.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

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

.leader-card.member-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
}

.leader-card.member-card .leader-img {
    margin: 0 auto;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 5rem;
    }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-cta { justify-content: center; }
    .hero-visual { height: 400px; transform: scale(0.8); }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-cards-section { margin-top: 2rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 1rem auto; }
    .social-icons { justify-content: center; }
    
    /* Extra Mobile Overrides */
    .timeline-line { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px !important; padding-right: 0; margin-bottom: 2rem; }
    .timeline-item.right { margin-left: 0; }
    .timeline-dot { left: 10px !important; }
    .timeline-item.right .timeline-dot { left: 10px !important; }
    .committees-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .resources-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .teams-grid { grid-template-columns: 1fr; }
    .team-group { padding: 1.5rem; }
    .form-container { padding: 2rem 1.5rem; }
}

/* ==========================================================================
   16. RTL Support (Arabic)
   ========================================================================== */
body.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', 'Inter', 'Outfit', sans-serif;
}

.rtl .nav-list {
    flex-direction: row-reverse;
}

.rtl .nav-link::after {
    left: auto;
    right: 0;
}

.rtl .btn::before {
    left: auto;
    right: -100%;
    transform: skewX(20deg);
}

.rtl .btn:hover::before {
    left: auto;
    right: 150%;
}

.rtl .arrow {
    margin-left: 0;
    margin-right: 8px;
    display: inline-block;
    transform: scaleX(-1);
}

.rtl .btn-primary:hover .arrow {
    transform: translateX(-4px) scaleX(-1);
}

.rtl .read-more:hover .arrow {
    transform: translateX(-4px) scaleX(-1);
}

.rtl .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.rtl .resource-content {
    text-align: right;
}

.rtl .resource-tag {
    right: auto;
    left: 1rem;
}

.rtl .hero-cta {
    flex-direction: row-reverse;
}

.rtl .active-users {
    flex-direction: row-reverse;
}

.rtl .avatar {
    margin-left: 0;
    margin-right: -15px;
}

.rtl .avatar:first-child {
    margin-right: 0;
}

.rtl .stats-center {
    text-align: center;
}

.rtl .form-group {
    text-align: right;
}

.rtl .text-right {
    text-align: left;
}

.rtl .social-icons {
    flex-direction: row-reverse;
}

.rtl .timeline-item {
    text-align: right;
}

.rtl .contact-card {
    flex-direction: row-reverse;
}

/* Fix specific RTL layout issues for standard bootstrap-like grid if needed later */

/* ==========================================
   Floating AI Robot
   ========================================== */
.floating-robot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

[dir="rtl"] .floating-robot {
    right: auto;
    left: 30px;
}

.floating-robot:hover {
    transform: translateY(-10px);
}

.robot-container {
    position: relative;
    animation: floating 3s ease-in-out infinite;
}

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

.robot-antenna {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.antenna-ball {
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.antenna-stick {
    width: 4px;
    height: 15px;
    background: #555;
}

.robot-head {
    width: 60px;
    height: 45px;
    background: linear-gradient(135deg, #444, #222);
    border-radius: 12px;
    border: 2px solid var(--accent-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5), inset 0 0 10px rgba(var(--accent-primary-rgb), 0.2);
}

.robot-eyes {
    display: flex;
    gap: 15px;
}

.robot-eye {
    width: 14px;
    height: 14px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-primary-rgb), 0.5);
}

.pupil {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-primary);
    transition: transform 0.1s;
}

.robot-mouth {
    width: 20px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 2px;
    opacity: 0.8;
}

.robot-torso {
    width: 40px;
    height: 35px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 0 0 15px 15px;
    margin: -5px auto 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-primary);
    border-top: none;
}

.robot-logo {
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.robot-shadow {
    width: 40px;
    height: 10px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    margin: 10px auto 0;
    filter: blur(2px);
    animation: shadowScale 3s ease-in-out infinite;
}

@keyframes shadowScale {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(0.6); opacity: 0.2; }
}

.robot-tooltip {
    position: absolute;
    top: -40px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.robot-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: var(--accent-primary) transparent transparent transparent;
}

.floating-robot:hover .robot-tooltip,
.robot-tooltip.show-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   News Ticker
   ========================================== */
.news-ticker {
    background: var(--accent-primary);
    color: var(--bg-primary);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1005;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.news-ticker-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: ticker-scroll 35s linear infinite;
    min-width: max-content;
}

.news-ticker-content:empty {
    display: none;
}

@keyframes ticker-scroll {
    from { transform: translateX(50%); }
    to { transform: translateX(-100%); }
}

[dir="rtl"] .news-ticker-content {
    animation: ticker-scroll-rtl 35s linear infinite;
}

@keyframes ticker-scroll-rtl {
    from { transform: translateX(-50%); }
    to { transform: translateX(100%); }
}

.news-ticker span.separator {
    font-weight: 800;
    color: rgba(0,0,0,0.3);
}

.news-ticker:hover .news-ticker-content {
    animation-play-state: paused;
}

/* ==========================================
   Page Transitions (Split NV Effect)
   ========================================== */
.page-transition.split {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
    display: flex;
    pointer-events: none;
    background: transparent;
    direction: ltr !important; /* Force Left-to-Right for reliable transform logic */
}

.split-half {
    width: 50%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: auto;
}

.left-half {
    justify-content: flex-end;
    transform: translateX(0);
    border-right: 1px solid rgba(212, 175, 55, 0.3); /* Middle divider line */
}

.right-half {
    justify-content: flex-start;
    transform: translateX(0);
}

.split-half .letter {
    font-size: 25vw;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.left-half .letter {
    margin-right: 2vw;
}

.right-half .letter {
    margin-left: 2vw;
}

/* Hidden state (splitting apart) */
.page-transition.hidden .left-half {
    transform: translateX(-100%);
    pointer-events: none;
}

.page-transition.hidden .right-half {
    transform: translateX(100%);
    pointer-events: none;
}
/* Fully hide transition after animation to be completely safe */
.page-transition.hidden {
    visibility: hidden;
    transition: visibility 0s 0.8s;
}

/* ==========================================
   Magnetic Custom Cursor
   ========================================== */
body.custom-cursor-enabled,
body.custom-cursor-enabled a,
body.custom-cursor-enabled button,
body.custom-cursor-enabled input,
body.custom-cursor-enabled textarea {
    cursor: none !important;
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000000;
    pointer-events: none;
    mix-blend-mode: difference; /* Highly premium effect */
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.cursor-outline {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    background-color: transparent;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Hover state for magnetic effect on links/buttons */
.cursor-outline.hovering {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-primary);
}

/* Hide Team Members / Leaders grids globally to keep only descriptions */
.teams-grid .leaders-grid,
.teams-grid .members-header,
.teams-grid .members-grid {
    display: none !important;
}

/* ==========================================
   Team Identity SVGs (Watermark Animations)
   ========================================== */

.team-group {
    position: relative;
    overflow: hidden; /* Contain the floating icon */
    padding: 3rem 1rem;
    border-radius: var(--border-radius-lg);
    background: rgba(10, 6, 24, 0.4);
    border: 1px solid var(--border-glass);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-glass);
    transition: transform 0.3s, border-color 0.3s;
}

.teams-section [data-theme='light'] .team-group {
    background: rgba(255, 255, 255, 0.6);
}

.team-group:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.team-header {
    position: relative;
    z-index: 2; /* Ensure text is above the watermark */
}

.team-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    opacity: 0.05; /* Super subtle background watermark */
    color: var(--accent-primary);
    pointer-events: none;
    z-index: 0;
}

[dir="rtl"] .team-icon {
    right: auto;
    left: -20px;
}

.team-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px var(--accent-primary));
}

/* Specific Identity Tweaks */
.text-code { color: #00ffcc; opacity: 0.04; }
.text-target { color: #ff3366; opacity: 0.04; }

/* Identity Animations */
.spin-anim {
    animation: spin-linear 15s linear infinite;
}
.spin-anim.slow {
    animation: spin-linear 25s linear infinite;
}
.pulse-anim {
    animation: pulse-scale 4s ease-in-out infinite;
}
.float-anim {
    animation: float-obj 6s ease-in-out infinite;
}

@keyframes spin-linear {
    100% { transform: rotate(360deg); }
}

@keyframes pulse-scale {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes float-obj {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================
   Parallax Crane Scroll Story
   ========================================== */
.crane-story-section {
    height: 300vh; /* Scroll length */
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 6, 24, 0.95) 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.crane-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crane-svg-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 80vh;
    z-index: 5;
    margin-left: auto;
    margin-right: 15%;
}

.crane-svg-wrapper svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
    overflow: visible;
}

/* Base states before JS overrides them */
#crane-base { transform-origin: center 380px; transform: scaleY(0); }
#crane-tower { transform-origin: center 350px; transform: scaleY(0); }
#crane-jib { transform-origin: 185px 90px; transform: translateX(-100%); opacity: 0; }
#crane-line { stroke-dasharray: 200; stroke-dashoffset: 200; }
#crane-hook { transform: translateY(-140px); }
#crane-payload { transform: translateY(200px); opacity: 0; }

.crane-story-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 35%;
    z-index: 10;
}

.story-title {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(40px);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-primary);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    pointer-events: none;
    line-height: 1.2;
}

.story-title.active {
    opacity: 1;
    transform: translateY(0);
}

.story-title span {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--accent-primary);
    display: block;
    margin-top: 15px;
    font-weight: 400;
}

@media (max-width: 992px) {
    .crane-story-text {
        left: 5%;
        width: 90%;
        top: 15%;
        text-align: center;
    }
    .story-title {
        left: 50%;
        transform: translate(-50%, 40px);
        width: 100%;
    }
    .story-title.active {
        transform: translate(-50%, 0);
    }
    .crane-svg-wrapper {
        margin-right: auto;
        margin-top: 15vh;
        max-width: 400px;
    }
}

/* ==========================================
   Hacker Terminal (Easter Egg)
   ========================================== */
.hacker-terminal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(5px);
    z-index: 99999999;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    direction: ltr;
    text-align: left;
}

.hacker-terminal.active {
    opacity: 1;
    pointer-events: auto;
}

.terminal-output {
    white-space: pre-wrap;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.terminal-input-line {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.terminal-prompt {
    margin-right: 10px;
    color: #fff;
    font-weight: bold;
}

.terminal-input-line input {
    background: transparent;
    border: none;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    outline: none;
    flex-grow: 1;
    width: 100%;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.terminal-input-line input::placeholder {
    color: rgba(0, 255, 0, 0.3);
}

/* ==========================================================================
   17. Hacked Theme Easter Egg
   ========================================================================== */
body.hacked-mode {
    --bg-primary: #000000 !important;
    --bg-secondary: #0a0a0a !important;
    --bg-tertiary: #111111 !important;
    --text-primary: #0f0 !important;
    --text-secondary: #0a0 !important;
    --accent-primary: #0f0 !important;
    font-family: 'Courier New', Courier, monospace !important;
}

body.hacked-mode * {
    font-family: 'Courier New', Courier, monospace !important;
}

body.hacked-mode h1, body.hacked-mode h2, body.hacked-mode h3, body.hacked-mode p, body.hacked-mode span, body.hacked-mode a {
    text-shadow: 0 0 2px #0f0;
}

body.hacked-mode img, body.hacked-mode .glass-panel {
    filter: invert(1) hue-rotate(180deg) sepia(1) saturate(5) hue-rotate(90deg) !important;
}

.glitch-layer {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 0, 0.1) 3px, transparent 3px);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s;
}

body.hacked-mode .glitch-layer {
    opacity: 1;
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10000;
}

.mystery-bot-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #0f0;
    box-shadow: 0 0 20px #0f0;
    border-radius: 8px;
    padding: 2rem;
    z-index: 9999;
    display: none;
    flex-direction: column;
}

.mystery-bot-modal.active {
    display: flex;
}

.bot-dialogue {
    color: #0f0;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 100px;
    white-space: pre-wrap;
}

.bot-input-area {
    display: flex;
    gap: 10px;
}

.bot-input-area input {
    flex-grow: 1;
    background: #000;
    border: 1px solid #0f0;
    color: #0f0;
    padding: 10px;
    font-size: 1.1rem;
    outline: none;
}

.bot-input-area input::placeholder {
    color: rgba(0, 255, 0, 0.3);
}

.bot-input-area button {
    background: #0f0;
    color: #000;
    border: none;
    font-weight: bold;
    padding: 0 20px;
    cursor: pointer;
}

