* {
    margin: 0;
    padding: 0;
    
}

:root {
    --cream: #EDEBDD;
    --dark-red: #630000;
    --dark-gray: #1B1717;
    --white: #ffffff;
    --light-cream: #f3f1ea;
    --light-red: rgba(99, 0, 0, 0.1);
    --light-gray: rgba(27, 23, 23, 0.1);
    --shadow-soft: 0 20px 60px rgba(27, 23, 23, 0.1);
    --shadow-hard: 0 30px 80px rgba(99, 0, 0, 0.2);
    --border-radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--cream);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(237, 235, 221, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--light-gray);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-red);
    letter-spacing: 2px;
}

/* Logo image styling - ready for your custom logo */
.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Logo text styling */
.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-red);
    letter-spacing: 2px;
}

/* Remove chess icon, prepare for custom logo */
.logo i {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--dark-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--dark-red) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    box-shadow: var(--shadow-soft) !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hard);
    background: var(--dark-gray) !important;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-red);
    cursor: pointer;
}

/* Hero Section - Fixed Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 100px 0 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatMinimal 12s ease-in-out infinite;
    background: var(--light-red);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -15%;
    left: -15%;
    animation-delay: 4s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 60%;
    animation-delay: 8s;
}

@keyframes floatMinimal {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    50% { 
        transform: translate(-20px, -30px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 0 2rem;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-red);
    box-shadow: 0 10px 30px rgba(27, 23, 23, 0.08);
    border: 2px solid var(--dark-red);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 0.8rem;
}

.gradient-text-hero {
    background: linear-gradient(
        135deg, 
        var(--dark-red) 0%, 
        var(--dark-gray) 50%, 
        var(--dark-red) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-sub {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--dark-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.6;
    font-weight: 500;
}

/* Enhanced Countdown Timer Styles */
.countdown-container {
    margin-bottom: 3rem;
    text-align: center;
}

.countdown-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.countdown-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--dark-red);
    border-radius: 2px;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.time-unit {
    background: var(--white);
    border: 3px solid var(--dark-red);
    border-radius: 15px;
    padding: 1.5rem 0.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(99, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.time-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.time-unit:hover::before {
    left: 100%;
}

.time-unit:hover {
    transform: translateY(-8px);
    border-color: var(--dark-gray);
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.25);
}

.time-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark-red);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', monospace;
}

.time-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(27, 23, 23, 0.1);
    min-width: 100px;
    border: 3px solid var(--dark-red);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark-red);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

/* Remove scroll indicator completely */
.scroll-indicator {
    display: none;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--dark-red);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: black;
    line-height: 1.1;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.text-block {
    margin-bottom: 3rem;
}

.text-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 1rem;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-highlights h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.highlight-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: var(--dark-red);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--dark-red);
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--dark-gray);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.big-stat {
    text-align: center;
    position: relative;
}

.big-number {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    display: block;
}

.big-label {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    display: block;
}

.currency {
    position: absolute;
    top: 0;
    left: -2rem;
    font-size: 3rem;
    font-weight: 700;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(237, 235, 221, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

/* Flow Section with Progressive Timeline */
.flow {
    padding: 8rem 0;
    background: var(--cream);
}

.flow-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(27, 23, 23, 0.2);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--dark-red) 0%, var(--dark-gray) 100%);
    border-radius: 2px;
    transition: height 0.1s ease-out;
    will-change: height;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0.4;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.step.active {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step:nth-child(even) .step-content {
    text-align: right;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(27, 23, 23, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 3px solid var(--cream);
}

.step.active .step-icon {
    background: var(--dark-red);
    box-shadow: var(--shadow-hard);
    transform: translateX(-50%) scale(1.1);
    border-color: var(--white);
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--dark-gray);
    transition: all 0.4s ease;
}

.step.active .step-icon i {
    color: var(--white);
    transform: scale(1.2);
}

.step-content {
    width: 45%;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.step.active .step-content {
    border-color: var(--light-red);
    box-shadow: var(--shadow-hard);
}

.step:nth-child(odd) .step-content {
    margin-right: auto;
}

.step:nth-child(even) .step-content {
    margin-left: auto;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hard);
}

.step-number {
    display: inline-block;
    background: rgba(27, 23, 23, 0.2);
    color: var(--dark-gray);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.step.active .step-number {
    background: var(--dark-red);
    color: var(--white);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.step.active .step-content h3 {
    color: var(--dark-red);
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    transition: opacity 0.4s ease;
}

.step:not(.active) .step-content p {
    opacity: 0.6;
}

/* Register Section */
.register {
    padding: 8rem 0;
    background: var(--dark-red);
    position: relative;
    overflow: hidden;
}

.register-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(237,235,221,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.register-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.register-text {
    color: var(--white);
}

.register-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.register-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.urgency-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(237, 235, 221, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 235, 221, 0.2);
}

.urgency-banner i {
    color: #ffd700;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.register-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-hard);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.register-card:hover {
    transform: translateY(-10px);
}

.register-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-red);
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-red);
    margin: 0 0.25rem;
}

.per-team {
    font-size: 1rem;
    color: var(--dark-gray);
    opacity: 0.7;
}

.register-cta {
    width: 100%;
    background: var(--dark-red);
    color: var(--white);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.register-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hard);
    background: var(--dark-gray);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    opacity: 0.8;
}

.guarantee i {
    color: #22c55e;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-brand .logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white in footer */
}

.footer-brand .logo span {
    color: var(--white);
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(237, 235, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(237, 235, 221, 0.1);
    opacity: 0.6;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Countdown Timer Styles */
/* ...existing code... */

/* FAQ Page Styles to match original theme */
.faq-page {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    min-height: 100vh;
    color: var(--dark-gray);
}

.faq-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.faq-hero .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.faq-hero .shape {
    position: absolute;
    opacity: 0.1;
    transition: all 0.3s ease;
    cursor: grab;
    pointer-events: auto;
}

.faq-hero .shape.dragging {
    cursor: grabbing;
    opacity: 0.3;
    transform: scale(1.1);
    z-index: 1000;
}

.faq-hero .shape-1 {
    width: 80px;
    height: 80px;
    background: var(--dark-red);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.faq-hero .shape-2 {
    width: 60px;
    height: 60px;
    background: var(--dark-gray);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.faq-hero .shape-3 {
    width: 70px;
    height: 70px;
    background: var(--dark-red);
    border-radius: 10px;
    top: 30%;
    right: 25%;
    animation: float 7s ease-in-out infinite;
}

.faq-hero .shape-4 {
    width: 50px;
    height: 50px;
    background: var(--dark-gray);
    transform: rotate(45deg);
    bottom: 20%;
    left: 20%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.faq-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-badge {
    display: inline-block;
    background: var(--dark-red);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: slideInDown 0.8s ease-out;
}

.faq-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-gray) 50%, var(--dark-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.faq-content-section {
    padding: 4rem 0 8rem;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-search {
    position: relative;
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.faq-search i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    opacity: 0.5;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 1rem;
    background: var(--cream);
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--dark-red);
    box-shadow: 0 0 0 3px rgba(99, 0, 0, 0.1);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(27, 23, 23, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1.0s; }

.faq-item:hover {
    border-color: var(--dark-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem;
    background: var(--cream);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question:hover {
    background: var(--light-red);
    color: var(--dark-red);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--dark-red);
    transition: all 0.4s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--dark-gray);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--dark-gray);
    line-height: 1.7;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
}

.faq-answer strong {
    color: var(--dark-red);
    font-weight: 700;
}

.faq-contact {
    text-align: center;
    margin-top: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--dark-red);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--cream);
}

/* Animation Keyframes */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Active navigation link */
.nav-links a.active {
    color: var(--dark-red);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 60px;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-hero .shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .countdown-container {
        margin-bottom: 2rem;
    }
    
    .time-unit {
        padding: 0.8rem 0.3rem;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .countdown-title {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

/* Rounds Section */
.rounds-section {
    padding: 6rem 0;
    background: var(--white);
}
.rounds-content {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* Unwind Section */
.unwind-section {
    padding: 6rem 0;
    background: #111;
    color: #fff;
}
.unwind-posts {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.unwind-post {
    background: #fff;
    color: #111;
    border-radius: 16px;
    overflow: hidden;
    width: 220px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    text-align: center;
}
.unwind-post img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    filter: grayscale(1);
}
.unwind-caption {
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

/* Registration Section */
.registration-section {
    padding: 6rem 0;
    background: var(--cream);
}
.registration-details {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
.event-booklet {
    flex: 1;
    text-align: center;
}
.booklet-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--dark-red);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: background 0.3s;
}
.booklet-link:hover {
    background: var(--dark-gray);
}
.fee-perks {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.fee-info {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-red);
}
.perks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.perk {
    background: var(--white);
    color: var(--dark-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(99,0,0,0.07);
}

/* Sponsors Section */
.sponsors-section {
    padding: 6rem 0;
    background: var(--white);
}
.sponsors-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.sponsor-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0.8);
    transition: filter 0.3s;
}
.sponsor-logo img:hover {
    filter: none;
}

/* Our Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--cream);
}
.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 3rem;
}
.team-member {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(99,0,0,0.07);
    text-align: center;
    padding: 1.5rem 1rem;
    width: 180px;
    transition: transform 0.3s;
}
.team-member img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--dark-red);
}
.team-member.founder img {
    width: 120px;
    height: 120px;
    border-width: 4px;
}
.team-member.lead img {
    width: 100px;
    height: 100px;
}
.member-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.member-role {
    font-size: 0.95rem;
    color: var(--dark-red);
    opacity: 0.8;
}
.team-member:hover {
    transform: translateY(-8px) scale(1.05);
}
.team-flowchart {
    text-align: center;
    color: var(--dark-gray);
    opacity: 0.7;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Stats Section Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        gap: 3rem;
    }
    
    .big-number {
        font-size: clamp(3.5rem, 9vw, 6rem);
    }
    
    .big-label {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }
    
    .currency {
        left: -1.5rem;
        font-size: 2.5rem;
    }
    
    .stat-item {
        padding: 1.2rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .big-stat {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .stats-list {
        order: 2;
        gap: 1.5rem;
    }
    
    .big-number {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    
    .big-label {
        font-size: 1.2rem;
        margin-top: 0.8rem;
        letter-spacing: 1px;
    }
    
    .currency {
        position: static;
        display: inline;
        font-size: clamp(2rem, 8vw, 3rem);
        margin-right: 0.5rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 0.5rem;
        border: 1px solid rgba(237, 235, 221, 0.2);
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        transform: translateY(-3px);
        background: rgba(237, 235, 221, 0.15);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .stat-item .number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
    }
    
    .stat-item .label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .stats-grid {
        gap: 2rem;
    }
    
    .big-number {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }
    
    .big-label {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .currency {
        font-size: clamp(1.5rem, 10vw, 2.5rem);
        margin-right: 0.3rem;
    }
    
    .stats-list {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .stat-item .number {
        font-size: 1.8rem;
    }
    
    .stat-item .label {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .stats-section {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .big-number {
        font-size: clamp(2rem, 18vw, 3.5rem);
    }
    
    .big-label {
        font-size: 0.9rem;
    }
    
    .currency {
        font-size: clamp(1.2rem, 12vw, 2rem);
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-item .number {
        font-size: 1.5rem;
    }
    
    .stat-item .label {
        font-size: 0.75rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 812px) and (orientation: landscape) {
    .stats-section {
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .big-stat {
        order: 1;
        margin-bottom: 0;
    }
    
    .stats-list {
        order: 2;
        gap: 1rem;
    }
    
    .big-number {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .stat-item {
        flex-direction: row;
        text-align: left;
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .stat-item .number {
        font-size: 1.3rem;
    }
    
    .stat-item .label {
        font-size: 0.7rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
    .stats-grid {
        gap: 5rem;
    }
    
    .big-number {
        font-size: clamp(6rem, 8vw, 9rem);
    }
    
    .big-label {
        font-size: 1.8rem;
        margin-top: 1.5rem;
    }
    
    .currency {
        left: -2.5rem;
        font-size: 4rem;
    }
    
    .stat-item {
        padding: 2rem;
        gap: 2.5rem;
    }
    
    .stat-item .number {
        font-size: 2rem;
    }
    
    .stat-item .label {
        font-size: 1rem;
    }
}

/* ...existing code... */