
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Orbitron', 'Arial', sans-serif;
    background-image: url('./assets/sky.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: #333;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.4), rgba(135, 206, 250, 0.3), rgba(176, 224, 230, 0.4));
    z-index: -1;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(70, 130, 180, 0.4);
    position: relative;
    min-height: 80px;
}

.header-title {
    text-align: left;
    margin-bottom: 1rem;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.header-title h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #4682b4, #87ceeb, #b0e0e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.nav-containers {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(70, 130, 180, 0.3);
}

.nav-container {
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-weight: bold;
    color: #333;
}

.nav-container:hover,
.nav-container.active {
    background: linear-gradient(45deg, #4682b4, #87ceeb);
    color: white;
    transform: scale(1.05);
}

.nav-separator {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #4682b4, #87ceeb);
    margin: 0 0.5rem;
    opacity: 0.6;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.content-section.active {
    display: block;
}

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

.hero {
    text-align: center;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    margin-bottom: 3rem;
    border: 3px solid rgba(70, 130, 180, 0.4);
    box-shadow: 0 8px 32px rgba(70, 130, 180, 0.3);
}



.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4682b4, #87ceeb, #b0e0e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-button {
    background: linear-gradient(45deg, #4682b4, #87ceeb, #b0e0e6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(70, 130, 180, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(70, 130, 180, 0.6);
    background: linear-gradient(45deg, #87ceeb, #4682b4, #b0e0e6);
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(70, 130, 180, 0.4);
    box-shadow: 0 4px 20px rgba(70, 130, 180, 0.2);
}

.feature h3 {
    background: linear-gradient(45deg, #4682b4, #87ceeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: #555;
    line-height: 1.6;
}

.faq-container,
.socials-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(70, 130, 180, 0.4);
    box-shadow: 0 8px 32px rgba(70, 130, 180, 0.3);
}

.faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #4682b4, #87ceeb, #b0e0e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(173, 216, 230, 0.2);
    border-radius: 15px;
    border-left: 4px solid #4682b4;
    box-shadow: 0 2px 10px rgba(70, 130, 180, 0.2);
}

.faq-item h3 {
    background: linear-gradient(45deg, #4682b4, #87ceeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.socials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f5f5f5;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    font-weight: bold;
}

.social-button.youtube:hover {
    background: #ff0000;
    border-color: #cc0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.social-button.discord:hover {
    background: #5865f2;
    border-color: #4752c4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.left-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.social-gif {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(70, 130, 180, 0.3);
    border: 3px solid rgba(70, 130, 180, 0.4);
}

.socials-text {
    position: relative;
    text-align: center;
    font-size: 1.6rem;
    color: #4682b4;
    font-weight: bold;
    margin: 2rem 0 0 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 3px solid #4682b4;
    box-shadow: 0 4px 20px rgba(70, 130, 180, 0.3);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.socials-text::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #4682b4;
}

.socials-text::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, 0.95);
}

.footer {
    margin-top: 4rem;
    padding: 3rem 0;
}

.gallery-section-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(70, 130, 180, 0.4);
    box-shadow: 0 8px 32px rgba(70, 130, 180, 0.3);
    margin-top: 3rem;
}

.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #4682b4, #87ceeb, #b0e0e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(70, 130, 180, 0.3);
    border: 3px solid rgba(70, 130, 180, 0.4);
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.active {
    opacity: 1;
}

.gallery-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-controls {
    position: relative;
    width: 350px;
    height: 4px;
    background: rgba(70, 130, 180, 0.3);
    border-radius: 2px;
    margin: 0 auto 3rem;
    cursor: pointer;
}

.gallery-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: #1e3a8a;
    border-radius: 2px;
    transition: left 0.3s ease;
    box-shadow: 0 0 8px rgba(30, 58, 138, 0.5);
}

.gallery-controls:hover {
    background: rgba(70, 130, 180, 0.5);
}

.gallery-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.gallery-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    border: 2px solid rgba(70, 130, 180, 0.3);
    font-size: 20px;
    color: #4682b4;
    font-weight: bold;
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(70, 130, 180, 0.4);
}

.gallery-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.logo-bottom {
    text-align: center;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 3px solid rgba(70, 130, 180, 0.4);
}

.logo-bottom h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 20px rgba(70, 130, 180, 0.8);
    font-weight: bold;
}

#leaf-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1000;
}

.leaf-animation {
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('./assets/leaf.webp');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    animation: leafFade 2s ease-out forwards;
}

@keyframes leafFade {
    0% {
        opacity: 1;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-containers {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .nav-container {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .header {
        text-align: center;
        min-height: auto;
        padding: 1rem 0.5rem;
    }
    
    .header-title {
        position: static;
        text-align: center;
        transform: none;
        left: auto;
        margin-bottom: 0.5rem;
    }
    
    .header-title h1 {
        font-size: 2rem;
    }
    
    .navbar {
        justify-content: center;
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .main-content {
        padding: 1rem;
    }

    .gallery-container {
        height: 300px;
        max-width: 100%;
    }

    .gallery-controls {
        width: 90%;
        max-width: 300px;
    }

    .gallery-image {
        width: 250px;
        height: 250px;
    }

    .logo-bottom h1 {
        font-size: 2rem;
    }

    .socials-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        text-align: center;
    }

    .left-side {
        order: 1;
        gap: 1rem;
    }

    .social-gif {
        max-width: 100%;
        width: 280px;
        height: auto;
    }

    .social-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        order: 2;
        align-items: center;
    }

    .social-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }

    .socials-text {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        max-width: 100%;
        margin: 1rem 0;
        line-height: 1.4;
    }

    .socials-container,
    .faq-container,
    .gallery-section-container {
        padding: 1.5rem;
    }

    .game-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature {
        padding: 1.5rem;
    }
}
