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

:root {
    --primary-color: #1AFFC6;
    --secondary-color: #FFD700;
    --bg-dark: #020202;
    --card-bg: rgba(16, 18, 27, 0.7);
    --border-color: rgba(0, 229, 255, 0.3);
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --glow-primary: rgba(0, 229, 255, 0.4);

    /* Typography */
    --heading-font: 'Syne', sans-serif;
    --body-font: 'Inter', sans-serif;
    --mono-font: 'JetBrains Mono', monospace;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: var(--body-font);
    color: var(--text-main);
    background: var(--bg-dark);
}

main {
    padding-top: 120px;
    flex: 1;
}

#main-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}


#network{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    background: transparent; 
    opacity: 0.4;
}

/* Golden Ember Effect */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.35;
    pointer-events: none;
}

.aurora-item {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.2) 0%, rgba(10, 11, 16, 0.2) 50%, transparent 100%);
    filter: blur(120px);
    animation: aurora-move 15s ease-in-out infinite alternate;
}

.aurora-item:nth-child(2) {
    background: radial-gradient(circle at center, rgba(204, 255, 0, 0.08) 0%, rgba(0, 229, 255, 0.03) 60%, transparent 100%);
    animation-duration: 25s;
    animation-delay: -5s;
    left: -25%;
}

@keyframes aurora-move {
    0% { transform: translate(-10%, -10%) rotate(0deg) scale(1); }
    50% { transform: translate(10%, 5%) rotate(5deg) scale(1.1); }
    100% { transform: translate(-5%, 15%) rotate(-5deg) scale(1); }
}


/* Navbar */

.nav-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 5px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    width: 75%;
    height: 80px;
    max-width: 1200px;

    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 40px;

    background: rgba(10, 11, 16, 0.88);
    backdrop-filter: blur(30px);

    border-radius: 100px;
    border: 1px solid var(--border-color);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.9), 
        0 0 30px rgba(0, 229, 255, 0.05),
        inset 0 0 15px rgba(0, 229, 255, 0.05);

    transform: translateX(-50%);
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.navbar.hidden {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
}

.navbar::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    background: linear-gradient(135deg, transparent, var(--primary-color), transparent);
    z-index: -1;
    opacity: 0.3;
}

@keyframes shimmy {
    0% { transform: translateX(-10%); }
    100% { transform: translateX(10%); }
}

.nav-scroll{
    flex:1;
    display:flex;
    align-items:center;
    justify-content: center;
    gap: 40px;
    overflow-x:auto;
    white-space:nowrap;
    scrollbar-width:none;
}

.nav-scroll a{
    flex:0 0 auto;
    text-align:center;
    padding:0 25px;
    height: 100%;
    font-weight:600;
    color: var(--secondary-color);
    text-decoration:none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    position: relative;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 16px;
    opacity: 0.7;
}

.nav-scroll a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.nav-scroll a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-scroll a:hover{
    color: var(--primary-color);
    opacity: 1;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}


/* CENTER TITLE */

/* HERO SECTION */
.hero-container {
    padding: 80px 20px 120px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 85px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--secondary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 40px;
    opacity: 1;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-primary, .cta-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cta-secondary {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

/* COUNTDOWN */
.countdown-section {
    padding: 60px 0;
    background: rgba(10, 11, 16, 0.5);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 100px;
}

#countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

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

.time-block span {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.time-block label {
    font-family: var(--mono-font);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dim);
    margin-top: 10px;
}

.time-divider {
    font-size: 48px;
    color: var(--border-color);
    margin-top: -25px;
}

/* SECTION HEADINGS */
.section-tag {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-tag.center {
    justify-content: center;
}

.section-tag::before, .section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--secondary-color);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary-color);
}

/* CONTENT SECTIONS */
.content-section {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-main);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}


/* Cards Section */

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 120px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.comp-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 35px;
    width: 350px;
    text-align: left;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.card-icon {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    opacity: 0.5;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.comp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 229, 255, 0) 0%,
        rgba(0, 229, 255, 0.15) 50%,
        rgba(0, 229, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.8s ease;
}

.comp-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(0, 229, 255, 0.25), 0 0 30px rgba(0, 229, 255, 0.1) inset;
}

.comp-card:hover::before {
    left: 200%;
}

.card-content h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* SPONSORS SECTION */
.sponsors-section {
    padding: 100px 0;
    text-align: center;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    opacity: 0.6;
}

.sponsor-item {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--text-dim);
    transition: all 0.3s ease;
    cursor: default;
}

.sponsor-item:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

/* Dashboard Section Refinement */
.dashboard-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px 150px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* Terminal Widget */
.terminal-widget {
    background: rgba(10, 11, 16, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 450px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 229, 255, 0.05);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    background: rgba(30, 30, 35, 0.9);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mac-buttons {
    display: flex;
    gap: 8px;
}

.mac-buttons .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.terminal-title {
    flex-grow: 1;
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-right: 50px; /* Offset to keep title centered despite buttons */
}

.terminal-body {
    padding: 20px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.terminal-body p {
    margin-bottom: 8px;
}

.prompt {
    color: var(--primary-color);
    font-weight: bold;
}

.success {
    color: var(--secondary-color);
    font-weight: bold;
    text-shadow: 0 0 12px rgba(204, 255, 0, 0.8);
}

.output {
    color: #a0a0a0;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background-color: #fff;
    animation: blink 1s step-end infinite;
    vertical-align: bottom;
}

#terminal-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    width: 250px;
    margin-left: 8px;
    padding: 0;
}

#terminal-input::placeholder {
    color: #ff5f56;
    opacity: 0.8;
}

#terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* The particle canvas is underneath it all */
}

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

/* Event Timeline Graph Widget */
.graph-widget {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    width: 450px;
    padding: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.graph-widget h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 1px;
}

.graph-container {
    display: flex;
    height: 200px;
    margin-bottom: 10px;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 15px;
    color: #888;
    font-size: 12px;
    text-align: right;
    width: 80px;
}

.graph-area {
    flex-grow: 1;
    position: relative;
    border-left: 2px solid #555;
    border-bottom: 2px solid #555;
}

.grid-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    left: 0;
}

.data-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 2px solid #fff;
    transform: translate(-50%, 50%);
    z-index: 3;
    box-shadow: 0 0 20px var(--secondary-color);
}

.data-line {
    position: absolute;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
    z-index: 1;
}

.x-axis {
    display: flex;
    justify-content: space-between;
    margin-left: 80px;
    color: #888;
    font-size: 12px;
}

/* Main Battle Ritual Hub - Standalone Section */
.ritual-container {
    position: relative;
    width: 100%;
    height: 300px; /* Space for the transformation */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    overflow: visible;
}

.ritual-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate-ritual 20s linear infinite;
}

.ritual-circle::before, .ritual-circle::after {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px var(--glow-primary);
    border-radius: 50%;
    animation: pulse-ritual 5s ease-in-out infinite alternate;
}

.ritual-circle::after {
    inset: -30px;
    border-color: var(--secondary-color);
    opacity: 0.3;
    animation-delay: 2.5s;
}

.ritual-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    filter: blur(40px);
}

.ritual-content {
    z-index: 2;
    transform: scale(1.5); /* Make it bigger outside the navbar */
}

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

@keyframes pulse-ritual {
    from { opacity: 0.2; transform: scale(0.95); }
    to { opacity: 0.5; transform: scale(1.05); }
}

/* Updated Sword Link for Standalone */
.sword-link {
    position: relative;
    padding: 10px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.axe-icon {
    width: 170px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: all 0.4s ease;
}

.axe-icon.rotating {
    animation: spin 0.3s linear infinite;
}

.sword-link:hover .axe-icon {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 0 20px var(--primary-color));
}

/* Main Battle - Manifestation Interaction */
.sword-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.sword-link.dissolve {
    opacity: 0;
    pointer-events: none;
}

/* Manifested Blade Component */
.manifested-blade {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Manifested Blade Component Glow Update */
.manifested-blade {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ritual-tagline {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 12px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    opacity: 1;
    pointer-events: none;
    z-index: 10;
    animation: tagline-glow 4s ease-in-out infinite alternate;
    white-space: nowrap;
    text-align: center;
}

@keyframes tagline-glow {
    0% { 
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.4); 
        transform: translateX(-50%) scale(1);
    }
    100% { 
        text-shadow: 0 0 50px rgba(255, 215, 0, 0.9), 0 0 80px rgba(255, 215, 0, 0.3); 
        transform: translateX(-50%) scale(1.05);
    }
}


.real-sword {
    width: 230px; 
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px var(--primary-color));
}

.manifested-blade.levitate {
    animation: blade-sequence 2.5s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

@keyframes blade-sequence {
    0% {
        opacity: 0;
        transform: translate(-50%, -20%) scale(0.3);
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
    60% { /* Slow levitation */
        transform: translate(-50%, -120%) scale(1.3);
        filter: brightness(1.6) drop-shadow(0 0 50px var(--primary-color));
        opacity: 1;
    }
    65% { /* Hold at the top, prepare to drop */
        transform: translate(-50%, -120%) scale(1.35);
        opacity: 1;
        filter: brightness(1.8) drop-shadow(0 0 60px #fff);
        animation-timing-function: cubic-bezier(0.55, 0.05, 0.68, 0.19); /* EaseIn for smooth acceleration */
    }
    85% { /* Plunging smoothly through screen */
        transform: translate(-50%, 300%) scale(1.1);
        opacity: 1;
        filter: brightness(1.5) drop-shadow(0 0 45px var(--secondary-color));
    }
    99% { /* Clears the bottom of the viewport gracefully */
        transform: translate(-50%, 800%) scale(0.9);
        opacity: 1;
    }
    100% { /* Disappears */
        transform: translate(-50%, 800%) scale(0.9);
        opacity: 0;
    }
}

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

@keyframes glow {
    from { text-shadow: 0 0 30px #ff0000, 0 0 60px #ff0000; }
    to { text-shadow: 0 0 40px #ff0000, 0 0 80px #ff0000; }
}

/* Site Footer: Elegant Framing */
.site-footer {
    background: linear-gradient(to top, #000 0%, var(--bg-dark) 100%);
    backdrop-filter: blur(30px);
    padding: 120px 0 60px;
    margin-top: auto;

    width: 100%;
    color: #ffffff;
    position: relative;
    z-index: 10;
    
    /* Subtle Golden Frame */
    border-top: 1px solid var(--border-color);
    border-bottom: 5px solid var(--primary-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    box-shadow: 0 0 15px var(--secondary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 80px;
    padding: 0 50px;
}

.footer-section h4 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 35px;
    font-size: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-section nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-section nav a, .social-links a {
    color: #888;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.footer-section nav a:hover, .social-links a:hover {
    color: #ffd700;
    transform: translateX(10px);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.footer-section nav a::before {
    content: '→';
    margin-right: -10px;
    opacity: 0;
    transition: all 0.4s;
    font-size: 12px;
}

.footer-section nav a:hover::before {
    margin-right: 12px;
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    position: relative;
    padding-bottom: 5px;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffd700;
    transition: width 0.4s;
}

.social-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.footer-bottom p {
    font-size: 10px;
    color: #444;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive Design */

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        width: 90%;
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo {
        width: 50px;
        height: 50px;
    }

    .nav-scroll {
        gap: 20px;
    }

    .nav-scroll a {
        font-size: 12px;
        padding: 0 10px;
    }

    .hero-container {
        padding: 60px 20px 80px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .countdown-section {
        padding: 40px 0;
        margin-bottom: 60px;
    }

    .time-block span {
        font-size: 48px;
    }

    .time-divider {
        font-size: 36px;
        margin-top: -20px;
    }

    .content-section {
        padding: 0 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-num {
        font-size: 24px;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 10px;
    }

    .comp-card {
        width: 100%;
        max-width: 350px;
    }

    .sponsors-grid {
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
    }

    .site-footer {
        padding: 80px 0 40px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .navbar {
        width: 95%;
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }

    .nav-scroll {
        gap: 15px;
    }

    .nav-scroll a {
        font-size: 10px;
        padding: 0 5px;
        letter-spacing: 0.5px;
    }

    .hero-container {
        padding: 50px 15px 70px;
    }

    .hero-title {
        font-size: 45px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .cta-primary, .cta-secondary {
        padding: 12px 25px;
        font-size: 13px;
    }

    .countdown-section {
        padding: 30px 0;
        margin-bottom: 50px;
    }

    #countdown {
        gap: 20px;
    }

    .time-block span {
        font-size: 36px;
    }

    .time-block label {
        font-size: 10px;
        margin-top: 5px;
    }

    .time-divider {
        font-size: 28px;
        margin-top: -15px;
    }

    .section-title {
        font-size: 32px;
    }

    .comp-card .card-content h3 {
        font-size: 28px !important;
    }

    .content-section {
        padding: 0 15px;
        margin-bottom: 100px;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 25px 20px;
        text-align: center;
    }

    .stat-num {
        font-size: 28px;
    }

    .stat-label {
        font-size: 10px;
    }

    .cards-container {
        gap: 15px;
        padding: 0 5px;
    }

    .comp-card {
        padding: 40px 25px;
    }

    .card-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .ritual-container {
        height: 250px;
    }

    .axe-icon {
        width: 140px;
    }

    .real-sword {
        width: 180px;
    }

    .sponsors-section {
        padding: 60px 0;
    }

    .sponsors-grid {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .sponsor-item {
        font-size: 16px;
    }

    .footer-content {
        padding: 0 15px;
    }

    .footer-section h4 {
        font-size: 14px;
    }
}

/* Shared Components for Subpages */
.container-centered {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 180px 20px 80px;
    position: relative;
    z-index: 1;
}

.event-card, .arena-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 229, 255, 0.05);
    max-width: 800px;
    width: 100%;
    position: relative;
}

.arena-card {
    background: rgba(10, 5, 5, 0.95);
    border: 1px solid rgba(220, 20, 60, 0.4);
    box-shadow: 0 0 80px rgba(0, 0, 0, 1), 0 0 40px rgba(220, 20, 60, 0.1);
    max-width: 900px;
}

.event-title {
    font-family:'Times New Roman', Times, serif;
    font-size: 64px;
    margin: 0;
    font-weight: 800;
    background: linear-gradient(to bottom, #ffffff 20%, var(--primary-color) 60%, #000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 4px;
    white-space: nowrap;
}

.status-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.arena-card h1 {
    font-family: var(--heading-font);
    font-size: 90px;
    margin: 0;
    font-weight: 800;
    background: linear-gradient(to bottom, #ffffff 20%, #dc143c 60%, #4a0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 15px;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.6));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}
.startmeme {
    display: inline-block;
    padding: clamp(15px, 4vw, 20px) clamp(20px, 6vw, 40px);
    margin: 30px auto 10px;
    font-weight: 900;
    font-size: clamp(14px, 4.5vw, 18px);
    letter-spacing: clamp(2px, 1vw, 4px);
    color: #fff;
    background: linear-gradient(45deg, var(--card-bg), #1a1a1a);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.startmeme:hover {
    transform: translateY(-5px) scale(1.05);
    color: #000;
    background: linear-gradient(45deg, #00ff88, #fff);
    border-color: transparent;
    animation: startmeme-pulse 1.5s infinite;
}

.startmeme::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    animation: startmeme-shine 3s infinite;
}

@keyframes startmeme-pulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.6), 
                    0 0 0 10px rgba(0, 229, 255, 0.4); 
    }
    100% { 
        box-shadow: 0 0 0 20px rgba(0, 255, 136, 0), 
                    0 0 0 40px rgba(0, 229, 255, 0); 
    }
}

@keyframes startmeme-shine {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 1; }
    40% { left: 200%; opacity: 0; }
    100% { left: 200%; opacity: 0; }
}

.stat-item h4 {
    color: var(--secondary-color);
    margin: 0 0 5px;
    font-size: 14px;
    letter-spacing: 2px;
}

.stat-item p {
    color: #fff;
    margin: 0;
    font-weight: 800;
}

.back-link {
    position: fixed;
    top: 40px;
    left: 40px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    transition: all 0.3s;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--glow-primary);
    transform: translateX(-5px);
}

/* Update Media Queries for Shared Components */
@media (max-width: 1024px) {
    .navbar { width: 85%; }
}

@media (max-width: 768px) {
    .container-centered {
        padding-top: 140px;
    }
    
    .event-card, .arena-card {
        padding: 40px 30px;
        max-width: 95%;
    }

    .arena-card h1 {
        font-size: 60px;
        letter-spacing: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .back-link {
        top: 20px;
        left: 20px;
        font-size: 11px;
    }

    .terminal-widget, .graph-widget {
        width: 90%;
        max-width: 450px;
    }

    .event-title {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .container-centered {
        padding-top: 120px;
    }

    .event-card, .arena-card {
        padding: 30px 20px;
    }

    .arena-card h1 {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .back-link {
        font-size: 10px;
    }

    .event-title {
        font-size: 36px;
    }

    .status-tag {
        font-size: 10px;
        padding: 8px 16px;
    }


    .footer-section nav a, .social-links a {
        font-size: 13px;
    }

    .site-footer {
        padding: 60px 0 30px;
    }

    .footer-bottom p {
        font-size: 9px;
    }
}

/* Rules Book Styles */
.rules-container {
    text-align: left;
    margin-top: 40px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.05);
}

.rules-heading {
    font-family: var(--heading-font);
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    padding-bottom: 20px;
    letter-spacing: 2px;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rules-list li {
    position: relative;
    padding: 20px 20px 20px 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rules-list li::before {
    content: '→';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 20px;
    font-family: var(--mono-font);
    transition: all 0.4s;
}

.rules-list li:hover {
    background: rgba(0, 229, 255, 0.08);
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.rules-list li:hover::before {
    left: 25px;
    text-shadow: 0 0 10px var(--primary-color);
}

@media (max-width: 768px) {
    .rules-container {
        padding: 25px;
    }
    
    .rules-list li {
        padding: 15px 15px 15px 45px;
        font-size: 14px;
    }
    
    .rules-list li::before {
        left: 15px;
    }
    
    .rules-heading {
        font-size: 20px;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    /* Navbar Mobile */
    .navbar {
        width: 92%;
        height: 60px;
        padding: 0 15px;
        top: 10px;
        border-radius: 30px;
        gap: 10px;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }

    .nav-scroll {
        gap: 10px;
    }

    .nav-scroll a {
        padding: 0 8px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* Countdown Mobile */
    .countdown-section {
        padding: 40px 0;
        margin-bottom: 60px;
    }

    #countdown {
        gap: 12px;
    }

    .time-block span {
        font-size: 32px;
    }

    .time-block label {
        font-size: 9px;
        letter-spacing: 1px;
        margin-top: 5px;
    }

    .time-divider {
        font-size: 24px;
        margin-top: -12px;
    }

    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Cards Mobile */
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .comp-card {
        width: 100%;
        max-width: 400px;
        padding: 35px 25px;
    }

    .card-content h3 {
        font-size: 22px;
    }

    .card-content p {
        font-size: 14px;
    }

    /* Ritual Hub Mobile */
    .ritual-container {
        height: 250px;
    }

    .ritual-circle {
        width: 160px;
        height: 160px;
    }

    .ritual-content {
        transform: scale(1.1);
    }

    .axe-icon {
        width: 45px;
        height: 45px;
    }

    /* Terminal Widget Mobile */
    .terminal-widget, .graph-widget {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .time-block span {
        font-size: 24px;
    }

    .section-tag {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .stat-num {
        font-size: 24px;
    }

    .navbar {
        height: 55px;
    }

    .nav-scroll a {
        font-size: 10px;
        padding: 0 5px;
    }
}