/* Windorae.xyz - Nature Wind Theme */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Playfair+Display:wght@700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sky-blue: #87CEEB;
    --cloud-white: #f0f8ff;
    --wind-teal: #20B2AA;
    --forest-green: #2d5016;
    --light-green: #90ee90;
    --soft-gray: #f5f5f5;
    --text-dark: #2c3e50;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(180deg, #87CEEB 0%, #f0f8ff 50%, #e0f0e0 100%);
    color: var(--text-dark);
    line-height: 1.8;
    position: relative;
    overflow-x: hidden;
}

/* Floating clouds animation */
body::before, body::after {
    content: '';
    position: fixed;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

body::before {
    width: 300px;
    height: 100px;
    top: 10%;
    left: -150px;
}

body::after {
    width: 400px;
    height: 120px;
    top: 40%;
    right: -200px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(100px) translateY(-20px); }
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-icon {
    font-size: 3rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--wind-teal);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--wind-teal);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.main-nav a:hover {
    color: var(--wind-teal);
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: var(--wind-teal);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Main Content */
.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 5%;
}

/* Hero */
.hero-area {
    text-align: center;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-area h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--wind-teal);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-area p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-dark);
}

.action-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--wind-teal), var(--light-green));
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 25px rgba(32, 178, 170, 0.3);
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(32, 178, 170, 0.4);
}

/* Info Box */
.info-box {
    background: rgba(144, 238, 144, 0.2);
    border: 3px solid var(--light-green);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.info-box h3 {
    color: var(--forest-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-box ul {
    list-style-position: inside;
}

.info-box li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Three Column Grid */
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.col-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.col-item:hover {
    transform: translateY(-8px);
}

.col-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.col-item h3 {
    color: var(--wind-teal);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* Game Display */
.game-display {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.game-display h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--wind-teal);
    margin-bottom: 2rem;
}

.game-display iframe {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Text Block */
.text-block {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.text-block h2 {
    font-family: 'Playfair Display', serif;
    color: var(--wind-teal);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-block h3 {
    color: var(--forest-green);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.text-block p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.text-block ul, .text-block ol {
    margin: 1.5rem 0 1.5rem 2.5rem;
}

.text-block li {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: rgba(45, 80, 22, 0.9);
    color: white;
    padding: 4rem 5%;
    margin-top: 5rem;
}

.footer-wrap {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-menu a {
    color: var(--light-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: white;
}

.support-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.support-box h3 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.support-links a {
    color: white;
    text-decoration: underline;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-content {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
}

.age-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--wind-teal);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.age-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.age-btn.accept {
    background: linear-gradient(135deg, var(--wind-teal), var(--light-green));
    color: white;
}

.age-btn.decline {
    background: #ccc;
    color: #666;
}

.age-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav ul {
        position: fixed;
        top: 85px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav ul.open {
        left: 0;
    }

    .hero-area h1 {
        font-size: 2.5rem;
    }

    .three-col {
        grid-template-columns: 1fr;
    }

    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .support-links {
        flex-direction: column;
    }
}
