/* CheerPatchpp - Vibrant Candy Theme */

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

body {
    font-family: 'Tahoma', 'Geneva', sans-serif;
    color: #2d1b2e;
    background: linear-gradient(135deg, #ffe5f3 0%, #ffd4e5 50%, #ffc4dc 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

.navbar-wrapper,
.section-container,
.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======= Header ======= */
.main-navbar {
    background: linear-gradient(135deg, #e91e8c 0%, #f72585 50%, #ff006e 100%);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.brand-logo img {
    height: 50px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.menu-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.nav-link.active-link {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-toggle.toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.toggle-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #e91e8c 0%, #f72585 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .menu-nav.nav-open {
        max-height: 420px;
    }
    
    .nav-link {
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

/* ======= Hero Banner ======= */
.hero-banner {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        url('bg.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2), transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 193, 7, 0.3), transparent 50%);
    pointer-events: none;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.banner-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    color: #d81b60;
    padding: 1.2rem 3.5rem;
    border: 3px solid #fff;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    font-family: Tahoma, sans-serif;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
    background: #ffd54f;
}

/* ======= Notice Section ======= */
.notice-section {
    background: linear-gradient(135deg, #ff69b4 0%, #ff85c1 100%);
    padding: 2.8rem 2rem;
    text-align: center;
    border-top: 4px solid #ffb3d9;
    border-bottom: 4px solid #ffb3d9;
}

.notice-wrapper h2 {
    font-size: 2.2rem;
    color: #6a0080;
    margin-bottom: 1.5rem;
}

.notice-primary {
    font-size: 1.3rem;
    color: #6a0080;
    font-weight: 600;
    margin-bottom: 1rem;
}

.notice-secondary {
    font-size: 1.1rem;
    color: #7b1fa2;
    margin-bottom: 2rem;
}

.info-button {
    background: #fff;
    color: #e91e8c;
    padding: 1rem 2.8rem;
    border: 2px solid #e91e8c;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Tahoma, sans-serif;
}

.info-button:hover {
    background: #e91e8c;
    color: #fff;
    transform: scale(1.05);
}

/* ======= Entertainment Section ======= */
.entertainment-section,
.play-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe5f3 100%);
}

.entertainment-section h2,
.play-section h1 {
    font-size: 3rem;
    color: #d81b60;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-intro {
    font-size: 1.3rem;
    color: #7b1fa2;
    text-align: center;
    margin-bottom: 3rem;
}

.game-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    border: 4px solid #f72585;
}

.game-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ======= About Section ======= */
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffe5f3 0%, #ffd4e5 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid #ff69b4;
}

.about-content h2 {
    font-size: 2.8rem;
    color: #d81b60;
    margin-bottom: 1.8rem;
}

.about-content p {
    font-size: 1.15rem;
    color: #6a0080;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ======= Reviews Section ======= */
.reviews-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffd4e5 0%, #ffc4dc 100%);
    text-align: center;
}

.reviews-section h2 {
    font-size: 3rem;
    color: #6a0080;
    margin-bottom: 3.5rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(135deg, #fff 0%, #ffe5f3 100%);
    padding: 2.8rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.2);
    border: 2px solid #ff69b4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.35);
}

.reviewer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d81b60;
    margin-bottom: 0.6rem;
}
.game-wrapper{
    height: auto;
}
.star-rating {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 1.2rem;
}

.review-content {
    font-size: 1.05rem;
    color: #6a0080;
    line-height: 1.8;
    font-style: italic;
}

/* ======= Features Section ======= */
.features-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffe5f3 0%, #ffd4e5 100%);
    text-align: center;
}

.features-section h2 {
    font-size: 3rem;
    color: #d81b60;
    margin-bottom: 3.5rem;
}

.features-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.15);
    border: 2px solid #ffc4dc;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
    border-color: #ff69b4;
}

.feature-symbol {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.6rem;
    color: #e91e8c;
    margin-bottom: 1.2rem;
}

.feature-item p {
    font-size: 1.05rem;
    color: #7b1fa2;
    line-height: 1.7;
}

/* ======= Footer ======= */
.site-footer {
    background: linear-gradient(135deg, #6a0080 0%, #7b1fa2 100%);
    color: #ffe5f3;
    padding: 4.5rem 2rem 1.5rem;
    border-top: 4px solid #ff69b4;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1.2rem;
    filter: brightness(1.3);
}

.footer-brand p {
    font-size: 1rem;
    color: #ffd4e5;
}

.footer-navigation h4,
.footer-legal h4 {
    font-size: 1.3rem;
    color: #ffb3d9;
    margin-bottom: 1.3rem;
}

.footer-navigation a,
.footer-legal a {
    display: block;
    color: #ffe5f3;
    text-decoration: none;
    margin-bottom: 0.9rem;
    transition: color 0.3s ease;
}

.footer-navigation a:hover,
.footer-legal a:hover {
    color: #ffb3d9;
}

.footer-notice {
    background: rgba(255, 180, 217, 0.15);
    padding: 1.8rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 180, 217, 0.3);
}

.footer-notice p {
    font-size: 1rem;
    color: #ffd4e5;
}

.footer-copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 180, 217, 0.3);
}

.footer-copyright p {
    font-size: 0.95rem;
    color: #ffb3d9;
}

@media (max-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ======= Contact Section ======= */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffd4e5 0%, #ffc4dc 100%);
}

.contact-section h1 {
    font-size: 3.5rem;
    color: #6a0080;
    margin-bottom: 1.2rem;
    text-align: center;
}

.contact-description {
    font-size: 1.3rem;
    color: #7b1fa2;
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #ff69b4;
}

.form-group {
    margin-bottom: 2.2rem;
}

.form-group label {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #d81b60;
    margin-bottom: 0.7rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid #ffc4dc;
    border-radius: 8px;
    font-size: 1.05rem;
    font-family: Tahoma, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e8c;
}

.submit-form {
    background: linear-gradient(135deg, #e91e8c 0%, #f72585 100%);
    color: #fff;
    padding: 1.2rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(233, 30, 140, 0.4);
    width: 100%;
    font-family: Tahoma, sans-serif;
}

.submit-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.6);
}

/* ======= Legal Section ======= */
.legal-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffe5f3 0%, #ffd4e5 100%);
    min-height: 65vh;
}

.legal-section h1 {
    font-size: 3.5rem;
    color: #d81b60;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 1.05rem;
    color: #e91e8c;
    margin-bottom: 3.5rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: #d81b60;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #e91e8c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 1.1rem;
    color: #6a0080;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.legal-section ul {
    margin-left: 2.5rem;
    margin-bottom: 1.8rem;
}

.legal-section li {
    font-size: 1.1rem;
    color: #6a0080;
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

.legal-section a {
    color: #e91e8c;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #f72585;
}

/* ======= Scroll to Top ======= */
.scroll-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e8c 0%, #f72585 100%);
    color: #fff;
    border: 3px solid #ffb3d9;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
    z-index: 999;
}

.scroll-top.show-scroll {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.6);
}

/* ======= Age Verification Modal ======= */
.verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(106, 0, 128, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.verification-box {
    background: linear-gradient(135deg, #fff 0%, #ffe5f3 100%);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
    border: 4px solid #ff69b4;
}

.verification-box h2 {
    font-size: 2.5rem;
    color: #d81b60;
    margin-bottom: 1.8rem;
}

.verification-box p {
    font-size: 1.15rem;
    color: #6a0080;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.verification-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.confirm-btn {
    background: linear-gradient(135deg, #e91e8c 0%, #f72585 100%);
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(233, 30, 140, 0.4);
    font-family: Tahoma, sans-serif;
}

.confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.6);
}

.decline-btn {
    background: transparent;
    color: #d81b60;
    padding: 1.2rem 3rem;
    border: 2px solid #e91e8c;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Tahoma, sans-serif;
}

.decline-btn:hover {
    background: rgba(233, 30, 140, 0.1);
}

/* ======= Disclaimer Modal ======= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(106, 0, 128, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow-y: auto;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, #fff 0%, #ffe5f3 100%);
    padding: 3.5rem;
    border-radius: 20px;
    max-width: 850px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
    border: 4px solid #ff69b4;
}

.modal-content h2 {
    font-size: 2.8rem;
    color: #d81b60;
    margin-bottom: 2.5rem;
}

.modal-content h3 {
    font-size: 1.8rem;
    color: #e91e8c;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.modal-content p {
    font-size: 1.1rem;
    color: #6a0080;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.close-btn {
    background: linear-gradient(135deg, #e91e8c 0%, #f72585 100%);
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(233, 30, 140, 0.4);
    font-family: Tahoma, sans-serif;
}

.close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.6);
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.8rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
    
    .entertainment-section h2,
    .reviews-section h2,
    .features-section h2 {
        font-size: 2.3rem;
    }
    
    .verification-box,
    .modal-content {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }
    
    .verification-actions {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .confirm-btn,
    .decline-btn {
        width: 100%;
    }
}
