@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Playfair Display";
    src: url("fonts/Poppins-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #FFDAC1, #FFE8D6);
    color: #2A1B0A;
    overflow-x: hidden;
}

.wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    object-fit: cover;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #FF5733, #FF8C4B);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 16px 0;
}

.brand a {
    font-family: "Poppins", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list li a {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFF;
    transition: color 0.3s, transform 0.3s;
}

.nav-list li a:hover {
    color: #FFD700;
    transform: scale(1.05);
}

.brand-logo {
    height: 60px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: rotate(5deg);
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: #FFF;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('img/banner.webp') center/cover no-repeat;
    position: relative;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 51, 0.5), rgba(255, 140, 75, 0.3));
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #FFF;
}

.hero-text h1 {
    font-family: 'Poppins', serif;
    font-size: 4rem;
    margin-bottom: 24px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-text p {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-image {
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: fadeInRight 1s ease-out;
}

.action-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #00C4B4;
    color: #FFF;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.action-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    background: #00A896;
}

/* Stats Section */
.stats-section {
    background: #FFF5E6;
    text-align: center;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.stat-item {
    background: #FFF;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-item i {
    font-size: 2.8rem;
    color: #FF5733;
    margin-bottom: 16px;
}

.stat-number {
    font-family: 'Poppins', serif;
    font-size: 2.5rem;
    color: #2A1B0A;
}

.stat-item p {
    font-size: 1.1rem;
    margin-top: 8px;
}

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

h2 {
    font-family: 'Poppins', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 56px;
    color: #2A1B0A;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF5733;
    margin: 16px auto 0;
    border-radius: 2px;
}

.highlight-grid,
.community-grid,
.feedback-grid,
.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.highlight-card,
.community-box,
.feedback-card,
.tip-box {
    background: #FFF;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover,
.community-box:hover,
.feedback-card:hover,
.tip-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.highlight-card i,
.tip-box i {
    font-size: 3rem;
    color: #FF5733;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.highlight-card:hover i,
.tip-box:hover i {
    transform: scale(1.2);
}

.egg-carousel {
    display: flex;
    overflow-x: auto;
    gap: 32px;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
}

.egg-item {
    flex: 0 0 300px;
    background: #FFF;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    scroll-snap-align: start;
}

.egg-item img {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.egg-item:hover img {
    transform: scale(1.05);
}

.gameplay-story .wrapper {
    display: flex;
    align-items: center;
    gap: 64px;
}

.story-image {
    width: 50%;
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.story-text {
    width: 50%;
}

.story-text h2 {
    text-align: left;
}

.story-text h2::after {
    margin: 16px 0;
}

.download-now p {
    margin-bottom: 32px;
    text-align: center;
}

.intro-text {
    text-align: center;
    margin-bottom: 48px;
}

.faq-item {
    background: #FFF;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-8px);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #FFD700;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #FFC107;
}

.faq-answer {
    display: none;
    padding: 24px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    background: #FFF;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.contact-info h2 {
    margin-bottom: 32px;
    text-align: left;
}

.contact-info h3 {
    margin-bottom: 16px;
    text-align: left;
}

.contact-info p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: #FF5733;
    font-size: 1.5rem;
}

.contact-form-wrapper {
    background: #FFF;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 24px;
    border: 2px solid #FFD700;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.privacy-checkbox {

    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.checkbox {

    width: 20px;
    height: 20px;
    border: 2px solid #FFD700;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: #FF5733;
    outline: none;
}

.contact-form-wrapper button {
    padding: 16px 48px;
    background: #00C4B4;
    color: #FFF;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.contact-form-wrapper button:hover {
    background: #00A896;
    transform: translateY(-4px);
}

.contact-form-wrapper label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.feedback-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid #FF5733;
}

.stars i {
    color: #FFD700;
    font-size: 1.3rem;
    margin: 0 2px;
}

.download-links {
    text-align: center;
    margin-top: 40px;
}

.download-btn {
    padding: 16px 48px;
    background: #00C4B4;
    color: #FFF;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.download-btn:hover {
    transform: scale(1.1);
    background: #00A896;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #2A1B0A, #3C2F1D);
    color: #FFF;
    padding: 80px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-content h3 {
    font-family: 'Poppins', serif;
    font-size: 2rem;
    margin-bottom: 24px;
}

.footer-content a {
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-content a:hover {
    color: #FFD700;
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 2px solid #FFD700;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section .wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        max-width: 80%;
        margin-top: 32px;
    }

    .gameplay-story .wrapper {
        flex-direction: column;
    }

    .story-image,
    .story-text {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wrapper {
        padding: 0 16px;
    }

    .site-header {
        padding: 12px 0;
    }

    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: linear-gradient(90deg, #FF5733, #FF8C4B);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-list li a {
        font-size: 2rem;
    }

    .menu-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .contact-form-wrapper {
        padding: 32px;
    }

    .highlight-grid,
    .community-grid,
    .feedback-grid,
    .tips-container {
        grid-template-columns: 1fr;
    }

    .egg-carousel {
        flex-direction: column;
    }

    .egg-item {
        flex: 0 0 auto;
    }

    .site-header .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .action-btn,
    .download-btn,
    .contact-form-wrapper button {
        padding: 12px 32px;
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2.2rem;
    }

}