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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #f5f5f5;
    line-height: 1.6;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    height: 70px;
    z-index: 1000;
    border-bottom: 1px solid rgba(132, 196, 124, 0.3);
}

.logo h1 {
    font-size: 1.3rem;
    color: #84c47c;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    white-space: nowrap;
}

.nav-links {
    gap: 1.5rem;
}

.nav-links a {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #84c47c;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://cdn.pixabay.com/photo/2016/11/29/04/19/beach-1867285_1280.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    animation: fadeInUp 1.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 50px;
    padding-top: 20px;
}

.hero-action-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.countdown-box {
    background: linear-gradient(135deg, rgba(132, 196, 124, 0.9), rgba(168, 213, 160, 0.9));
    border: 2px solid #84c47c;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    min-width: 200px;
}

.countdown-label {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.countdown-date {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.countdown-subtitle {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.countdown-time {
    font-size: 0.9rem;
    color: #2d2d2d;
    padding: 4px 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: inline-block;
    margin-top: 0.3rem;
}

.hero h1 {
    color: #84c47c;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero .subtitle {
    color: #b8e6b1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #84c47c, #a8d5a0);
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(132, 196, 124, 0.3);
    color: #1a1a1a;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    color: #84c47c;
}

.journey .section-title {
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

/* About Section */
.about {
    background: linear-gradient(rgba(38, 38, 38, 0.85), rgba(38, 38, 38, 0.85));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-text {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Journey Section */
.journey {
    background: 
        radial-gradient(ellipse at center, 
            rgba(255, 183, 77, 0.9) 30%, 
            rgba(244, 162, 97, 0.9) 50%,
            rgba(102, 187, 106, 1) 80%,
            rgba(76, 175, 80, 1) 100%);
    position: relative;
}

.journey::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/botanical-pattern.png');
    background-size: 600px 600px;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.4;
    z-index: 1;
}

.journey .container {
    position: relative;
    z-index: 2;
}

.phase-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #1a1a1a;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.phase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(132, 196, 124, 0.2);
}

.phase-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.phase-card p {
    color: #2d2d2d;
    font-weight: 500;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.6);
}

.phase-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Sign Up Section */
.signup {
    background: #f4a261;
    color: #1a1a1a;
    position: relative;
}



.signup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/white-botanical-pattern.png');
    background-size: 600px 600px;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.2;
    z-index: 1;
}

.signup .section-title {
    color: #1a1a1a;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.signup-form {
    position: relative;
    z-index: 2;
}

.form-label {
    font-weight: bold;
    color: #333;
}

.form-control:focus {
    border-color: #84c47c;
    box-shadow: 0 0 0 0.2rem rgba(132, 196, 124, 0.25);
}

.submit-btn {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Special highlighting for key text */
.highlight-game {
    background: linear-gradient(45deg, #ff8c00, #ffb347);
    color: #1a1a1a;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: bold;
    display: inline;
    box-shadow: 0 2px 4px rgba(255, 140, 0, 0.3);
    text-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.3rem;
    }

    .hero-action-area {
        flex-direction: column;
        gap: 2rem;
    }
    
    .countdown-box {
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
    }
}
