/* Bloom Play - Warm Color Palette Theme */

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

body {
    font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
    color: #2c1810;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 50%, #ffd4ba 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ======= Header & Navigation ======= */
.main-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff9a56 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.menu-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
}

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

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

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

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

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

.hamburger.burger-active span:nth-child(2) {
    opacity: 0;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    
    .nav-menu.menu-active {
        max-height: 400px;
    }
    
    .menu-link {
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* ======= Hero Section ======= */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(155, 89, 182, 0.9) 0%, rgba(142, 68, 173, 0.9) 50%, rgba(195, 155, 211, 0.9) 100%),
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-wrapper {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 10;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-badge {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: bounce 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #e91e63 0%, #ff6f91 100%);
    color: #fff;
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.6);
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(-10px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* ======= Warning Block ======= */
.warning-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.warning-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.warning-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.disclaimer-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(155, 89, 182, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e91e63 0%, #ff6f91 50%, #9b59b6 100%);
}

.disclaimer-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.15),
        0 12px 35px rgba(0, 0, 0, 0.08);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63 0%, #ff6f91 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.icon-shield {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.disclaimer-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c1810;
    margin: 0;
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.disclaimer-body {
    text-align: left;
}

.disclaimer-text {
    font-size: 1.1rem;
    color: #4a2812;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.disclaimer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff6f91 0%, #e91e63 100%);
    color: #fff;
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.disclaimer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.disclaimer-btn:hover::before {
    left: 100%;
}

.disclaimer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.disclaimer-btn:hover .btn-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .warning-block {
        padding: 4rem 1.5rem;
    }
    
    .disclaimer-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .disclaimer-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .disclaimer-title {
        font-size: 1.8rem;
    }
    
    .disclaimer-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .disclaimer-btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
    }
}

/* ======= Play Section ======= */
.play-section {
    padding: 5rem 2rem;
    text-align: center;
}

.play-section h2 {
    font-size: 2.8rem;
    color: #9b59b6;
    margin-bottom: 2rem;
}

.play-section.dedicated h1 {
    font-size: 3rem;
    color: #9b59b6;
    margin-bottom: 1.5rem;
}

.play-desc {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.option-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.option-btn {
    background: linear-gradient(135deg, #ff6f91 0%, #e91e63 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.5);
}

.option-btn.selected {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.5);
}

.frame-holder {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.play-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.play-frame.current {
    opacity: 1;
    visibility: visible;
}

/* Games List Vertical Layout */
.games-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}


.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.game-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    max-width: 900px;
    height: 550px;
    aspect-ratio: 16 / 9;

}

/* Responsive adjustments for games */
@media (max-width: 960px) {

    
    .game-frame{
        height:auto;
    }
}

@media (max-width: 768px) {

   
    .game-frame{
        height:auto;
        maz-width: 100%;
    }
}

/* ======= About Section ======= */
.about-section {
    padding: 8rem 2rem;
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%),
        radial-gradient(circle at 20% 80%, rgba(155, 89, 182, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.1) 50%, transparent 55%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    animation: pulse 2s infinite;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e91e63 0%, #ff6f91 100%);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #e91e63;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.2);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(155, 89, 182, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e91e63 0%, #ff6f91 100%);
    border-radius: 20px 20px 0 0;
}

.text-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.06);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.text-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #9b59b6;
    margin-bottom: 1rem;
}

.text-card p {
    font-size: 1.05rem;
    color: #4a2812;
    line-height: 1.7;
    margin: 0;
}

.about-visual-column {
    position: relative;
}

.visual-container {
    position: relative;
    padding: 2rem;
}

.visual-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    border-radius: 30px;
    opacity: 0.1;
    transform: rotate(-2deg);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 3px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(155, 89, 182, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e91e63 0%, #ff6f91 100%);
}

.stat-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 5px 18px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 1.5rem;
    }
    
    .about-header {
        margin-bottom: 3rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .text-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ======= Reviews Section ======= */
.reviews-section {
    padding: 5rem 2rem;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.8rem;
    color: #9b59b6;
    margin-bottom: 3rem;
}

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

.review-card {
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.25);
}

.reviewer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.review-rating {
    font-size: 1.4rem;
    color: #ff9a56;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

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

.features-section h2 {
    font-size: 2.8rem;
    color: #8e44ad;
    margin-bottom: 3rem;
}

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

.feature-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(142, 68, 173, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.25);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #9b59b6;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ======= Footer ======= */
.page-footer {
    background: linear-gradient(135deg, #2c1810 0%, #4a2812 100%);
    color: #fff;
    padding: 4rem 2rem 1.5rem;
}

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

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

.footer-logo p {
    font-size: 0.95rem;
    color: #ffb380;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.links-col h4 {
    font-size: 1.2rem;
    color: #ff9a56;
    margin-bottom: 1.2rem;
}

.links-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.links-col a:hover {
    color: #ff9a56;
}

.footer-alert {
    background: rgba(255, 154, 86, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 154, 86, 0.3);
}

.footer-alert p {
    font-size: 0.95rem;
    color: #ffb380;
}

.footer-copy {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copy p {
    font-size: 0.9rem;
    color: #ccc;
}

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

/* ======= Contact Form ======= */
.contact-section {
    padding: 5rem 2rem;
}

.contact-section h1 {
    font-size: 3rem;
    color: #9b59b6;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-row {
    margin-bottom: 2rem;
}

.form-row label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a2812;
    margin-bottom: 0.6rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #9b59b6;
}

.submit-btn {
    background: linear-gradient(135deg, #e91e63 0%, #ff6f91 100%);
    color: #fff;
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.5);
}

/* ======= Legal Pages ======= */
.legal-section {
    padding: 5rem 2rem;
    min-height: 60vh;
}

.legal-section h1 {
    font-size: 3rem;
    color: #9b59b6;
    margin-bottom: 1rem;
}

.updated-date {
    font-size: 1rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 1.05rem;
    color: #4a2812;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    font-size: 1.05rem;
    color: #4a2812;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

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

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

/* ======= Scroll to Top Button ======= */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e91e63 0%, #ff6f91 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.4);
    z-index: 999;
}

.to-top.visible {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.6);
}

/* ======= Age Modal ======= */
.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-card {
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    border: 3px solid #ff9a56;
}

.modal-card h2 {
    font-size: 2.2rem;
    color: #9b59b6;
    margin-bottom: 1.5rem;
}

.modal-card p {
    font-size: 1.05rem;
    color: #4a2812;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.modal-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.agree-button {
    background: linear-gradient(135deg, #e91e63 0%, #ff6f91 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.4);
}

.agree-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.6);
}

.exit-button {
    background: #fff;
    color: #666;
    padding: 1rem 2.5rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-button:hover {
    background: #f5f5f5;
    border-color: #999;
}

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

.disclaimer-content {
    background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    border: 3px solid #ff9a56;
    position: relative;
}

.disclaimer-content h2 {
    font-size: 2.5rem;
    color: #9b59b6;
    margin-bottom: 2rem;
}

.disclaimer-content h3 {
    font-size: 1.6rem;
    color: #ff6b35;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    font-size: 1.05rem;
    color: #4a2812;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.close-disclaimer {
    background: linear-gradient(135deg, #e91e63 0%, #ff6f91 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.4);
}

.close-disclaimer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.6);
}

/* ======= Responsive Adjustments ======= */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .play-section h2,
    .reviews-section h2,
    .features-section h2 {
        font-size: 2rem;
    }
    
    .modal-card,
    .disclaimer-content {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .modal-btns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .agree-button,
    .exit-button {
        width: 100%;
    }
}
