
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    background: radial-gradient(ellipse at top, #0f0f23 0%, #16213e 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

.age-chetavani-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #e94560, #f27121);
    color: white;
    z-index: 2000;
    padding: 12px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
    animation: slideInFromTop 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInFromTop {
    from { 
        transform: translateY(-100%); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

.strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.warning-symbol {
    font-size: 1.4em;
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        filter: brightness(1); 
    }
    50% { 
        transform: scale(1.15) rotate(5deg); 
        filter: brightness(1.3); 
    }
}

.strip-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8em;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.strip-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.sheersh-navigation {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1500;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    font-size: 2.2em;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.7));
    animation: symbolRotate 4s linear infinite;
}

@keyframes symbolRotate {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.site-name {
    font-size: 2.4em;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: gradientFlow 6s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.main-menu {
    display: flex;
    gap: 40px;
}

.menu-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
}

.menu-item:hover {
    color: #4ecdc4;
    transform: translateY(-2px);
}

.menu-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.menu-item:hover::before {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 20px;
}

.launch-game-btn {
    background: linear-gradient(135deg, #e94560, #f27121);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.4);
    border: 2px solid transparent;
}

.launch-game-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.main-wrapper {
    margin-top: 136px;
}

.hero-mandal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    overflow: hidden;
}

.cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.symbol {
    position: absolute;
    font-size: 2.5em;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    animation: cosmicFloat 8s ease-in-out infinite;
}

.symbol-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.symbol-2 {
    top: 25%;
    right: 12%;
    animation-delay: 1.3s;
}

.symbol-3 {
    top: 60%;
    left: 15%;
    animation-delay: 2.6s;
}

.symbol-4 {
    bottom: 30%;
    right: 20%;
    animation-delay: 3.9s;
}

.symbol-5 {
    bottom: 15%;
    left: 25%;
    animation-delay: 5.2s;
}

.symbol-6 {
    top: 40%;
    right: 8%;
    animation-delay: 6.5s;
}

@keyframes cosmicFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.6; 
    }
    33% { 
        transform: translateY(-30px) rotate(120deg) scale(1.2); 
        opacity: 1; 
    }
    66% { 
        transform: translateY(15px) rotate(240deg) scale(0.8); 
        opacity: 0.7; 
    }
}

.hero-content-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-block {
    animation: heroSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroSlideIn {
    from { 
        transform: translateX(-60px) translateY(30px); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0) translateY(0); 
        opacity: 1; 
    }
}

.hero-title {
    font-size: 4.2em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
    opacity: 0;
    animation: titleReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-line-1 {
    color: rgba(255, 255, 255, 0.9);
    animation-delay: 0.3s;
}

.title-line-2 {
    background: linear-gradient(135deg, #ff6b6b, #f27121);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.6s;
}

.title-line-3 {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.9s;
}

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

.hero-subtitle {
    font-size: 1.35em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    line-height: 1.8;
    max-width: 90%;
}

.hero-action-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.primary-action,
.secondary-action {
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
}

.primary-action {
    background: linear-gradient(135deg, #e94560, #f27121);
    color: white;
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.4);
}

.primary-action:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 50px rgba(233, 69, 96, 0.6);
}

.secondary-action {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-action:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(78, 205, 196, 0.8);
    transform: translateY(-3px);
}

.hero-visual-sphere {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: sphereAppear 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sphereAppear {
    from { 
        transform: scale(0.5) rotate(-180deg); 
        opacity: 0; 
    }
    to { 
        transform: scale(1) rotate(0deg); 
        opacity: 1; 
    }
}

.mystical-orb {
    width: 400px;
    height: 400px;
    position: relative;
    animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.orb-core {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #e94560, #1a1a2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 50px rgba(233, 69, 96, 0.6),
        0 0 100px rgba(233, 69, 96, 0.4),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.phoenix-emblem {
    font-size: 5em;
    animation: phoenixPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

@keyframes phoenixPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); 
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 30px rgba(255, 107, 107, 1)); 
    }
}

.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(78, 205, 196, 0.4);
    border-radius: 50%;
    animation: ringExpand 4s linear infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    animation-delay: 1.3s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation-delay: 2.6s;
}

@keyframes ringExpand {
    0% { 
        width: 50px; 
        height: 50px; 
        opacity: 1; 
        border-color: rgba(78, 205, 196, 0.8); 
    }
    100% { 
        width: 400px; 
        height: 400px; 
        opacity: 0; 
        border-color: rgba(78, 205, 196, 0); 
    }
}

.game-showcase-realm {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header-block {
    text-align: center;
    margin-bottom: 80px;
    animation: sectionFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section-title {
    font-size: 3.2em;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-accent {
    font-size: 1.3em;
    animation: accentBounce 2.5s ease-in-out infinite;
}

@keyframes accentBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.2); }
}

.section-description {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.game-presentation-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: cardSlideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@keyframes cardSlideUp {
    from { 
        transform: translateY(60px) scale(0.9); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

.game-presentation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
}

.game-visual-container {
    position: relative;
}

.game-artwork {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-artwork:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.phoenix-scene {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    position: relative;
}

.mountain-silhouette {
    font-size: 3em;
    opacity: 0.6;
    animation: mountainSway 8s ease-in-out infinite;
}

@keyframes mountainSway {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.phoenix-flight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.phoenix-main {
    font-size: 6em;
    animation: phoenixSoar 4s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255, 107, 107, 0.8));
}

@keyframes phoenixSoar {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    33% { 
        transform: translateY(-15px) rotate(-5deg) scale(1.05); 
    }
    66% { 
        transform: translateY(10px) rotate(5deg) scale(0.95); 
    }
}

.flame-trail {
    font-size: 2.5em;
    animation: flameFlicker 1.5s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
    0% { 
        opacity: 0.7; 
        transform: scale(1) rotate(-2deg); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1.1) rotate(2deg); 
    }
}

.mystical-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.element {
    position: absolute;
    font-size: 1.8em;
    animation: elementDance 6s ease-in-out infinite;
}

.element:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.element:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.element:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes elementDance {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-25px) rotate(180deg); 
        opacity: 1; 
    }
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.game-artwork:hover .play-overlay {
    opacity: 1;
}

.play-symbol {
    font-size: 4em;
    color: white;
    animation: playPulse 2s ease-in-out infinite;
}

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

.game-details-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.game-name {
    font-size: 3em;
    font-weight: 800;
    background: linear-gradient(135deg, #e94560, #f27121);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.game-narrative {
    font-size: 1.2em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.game-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.highlight-icon {
    font-size: 1.8em;
    filter: drop-shadow(0 0 8px rgba(233, 69, 96, 0.6));
}

.highlight-text {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

.game-launch-button {
    background: linear-gradient(135deg, #e94560, #f27121);
    color: white;
    padding: 18px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3em;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.game-launch-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 50px rgba(233, 69, 96, 0.6);
}

.features-constellation {
    padding: 120px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: featureFloat 6s ease-in-out infinite;
}

.feature-card:nth-child(2) { animation-delay: 1.5s; }
.feature-card:nth-child(3) { animation-delay: 3s; }
.feature-card:nth-child(4) { animation-delay: 4.5s; }

@keyframes featureFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(5deg); }
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon-container {
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 3.5em;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)); }
    50% { filter: drop-shadow(0 0 25px rgba(78, 205, 196, 1)); }
}

.feature-title {
    color: white;
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05em;
    line-height: 1.7;
}

.testimonials-galaxy {
    padding: 120px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.testimonials-orbit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-sphere {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: testimonialFloat 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes testimonialFloat {
    from { 
        transform: translateY(40px) scale(0.9); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

.testimonial-sphere:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1.15em;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e94560, #f27121);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    filter: drop-shadow(0 4px 12px rgba(233, 69, 96, 0.4));
}

.author-name {
    color: #333;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.author-location {
    color: #999;
    font-size: 0.95em;
    font-weight: 500;
}

.faq-dimension {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-panel {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: faqSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes faqSlideIn {
    from { 
        transform: translateX(-40px); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

.faq-panel:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.faq-trigger {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-trigger:hover {
    background: rgba(233, 69, 96, 0.1);
}

.faq-trigger h4 {
    color: #333;
    font-weight: 700;
    font-size: 1.2em;
    flex: 1;
}

.faq-arrow {
    font-size: 1.8em;
    color: #e94560;
    font-weight: bold;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-panel.open .faq-content {
    max-height: 300px;
    padding: 0 30px 30px;
}

.faq-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05em;
}

.footer-realm {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0 30px;
}

.footer-content-matrix {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-symbol {
    font-size: 2.5em;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.8));
}

.footer-logo h3 {
    font-size: 2.2em;
    font-weight: 800;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-mission {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15em;
    line-height: 1.6;
}

.footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.nav-column h4 {
    margin-bottom: 25px;
    color: #4ecdc4;
    font-size: 1.3em;
    font-weight: 700;
}

.nav-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 1.05em;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-column a:hover {
    color: #4ecdc4;
    transform: translateX(10px);
}

.legal-disclaimer-section {
    background: rgba(0, 0, 0, 0.4);
    padding: 50px 0;
    margin: 60px 0 40px;
}

.disclaimer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.disclaimer-wrapper h4 {
    color: #e94560;
    font-size: 1.4em;
    margin-bottom: 25px;
    gap: 12px;
}

.disclaimer-wrapper p {
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.legal-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.age-restriction-badge,
.entertainment-badge,
.no-money-badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1em;
}

.age-restriction-badge {
    background: #e94560;
    color: white;
}

.entertainment-badge {
    background: #4ecdc4;
    color: #1a1a2e;
}

.no-money-badge {
    background: #f27121;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05em;
}

@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .game-presentation-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content-matrix {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .main-menu {
        gap: 25px;
    }
    
    .hero-title {
        font-size: 3em;
    }
    
    .section-title {
        font-size: 2.5em;
    }
    
    .testimonials-orbit {
        grid-template-columns: 1fr;
    }
    
    .features-matrix {
        grid-template-columns: 1fr;
    }
}
.menu-item.active {
    color: #4ecdc4;
    font-weight: 700;
}

.menu-item.active::before {
    width: 100%;
}

.policy-main-container {
    margin-top: 136px;
    min-height: 100vh;
}

.policy-hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.policy-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.policy-title {
    font-size: 3.5em;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-icon {
    font-size: 1.2em;
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.8));
    animation: iconGlow 3s ease-in-out infinite;
}

.policy-subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.policy-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.last-updated,
.policy-version {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.policy-content-realm {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.policy-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.policy-navigation-sidebar {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 180px;
}

.sidebar-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e94560;
}

.policy-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
}

.policy-nav-link:hover {
    background: linear-gradient(135deg, #e94560, #f27121);
    color: white;
    transform: translateX(5px);
}

.policy-nav-link::before {
    content: '→';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.policy-nav-link:hover::before {
    opacity: 1;
    left: -5px;
}

.policy-document-area {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.policy-introduction {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f1f3f4;
}

.intro-heading {
    font-size: 2.2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e94560, #f27121);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    font-size: 1.15em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.important-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #f39c12;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notice-icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.important-notice p {
    color: #856404;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.policy-section {
    margin-bottom: 50px;
    scroll-margin-top: 200px;
}

.section-heading {
    font-size: 2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e94560;
}

.heading-number {
    background: linear-gradient(135deg, #e94560, #f27121);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: 800;
}

.section-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

.subsection-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #333;
    margin: 25px 0 15px 0;
    position: relative;
    padding-left: 20px;
}

.subsection-title::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-size: 0.8em;
}

.policy-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.policy-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    margin-bottom: 8px;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.1em;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.usage-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(233, 69, 96, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.usage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.15);
    border-color: #e94560;
}

.usage-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.3));
}

.usage-card h4 {
    font-size: 1.3em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.usage-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.sharing-scenarios {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.scenario-item {
    background: rgba(78, 205, 196, 0.1);
    border-left: 4px solid #4ecdc4;
    border-radius: 10px;
    padding: 20px;
}

.scenario-item h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scenario-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.security-badge {
    font-size: 2em;
    background: linear-gradient(135deg, #e94560, #f27121);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-details h4 {
    font-size: 1.3em;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.security-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.rights-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-item {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: #4ecdc4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.right-item h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.right-item p {
    color: #666;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.cookies-explanation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #f27121;
}

.cookie-type h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-type p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.cookie-control {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #2196f3;
}

.cookie-control p {
    color: #1565c0;
    margin: 0;
    line-height: 1.6;
}

.age-warning-box {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 2px solid #e94560;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

.age-icon {
    font-size: 3em;
    color: #e94560;
    flex-shrink: 0;
}

.age-content h4 {
    color: #c62828;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.age-content p {
    color: #d32f2f;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.contact-icon {
    font-size: 2em;
    color: #4ecdc4;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.contact-info h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.contact-info p {
    color: #4ecdc4;
    margin: 0;
    font-weight: 600;
    font-size: 1.05em;
}

@media (max-width: 1024px) {
    .policy-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .policy-navigation-sidebar {
        position: relative;
        top: 0;
        order: 2;
    }
    
    .policy-document-area {
        order: 1;
    }
    
    .policy-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .policy-nav-link {
        flex: 1;
        min-width: 150px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 2.5em;
        flex-direction: column;
        gap: 15px;
    }
    
    .policy-meta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .policy-document-area {
        padding: 30px 25px;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-matrix {
        grid-template-columns: 1fr;
    }
    
    .age-warning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .security-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .section-heading {
        font-size: 1.6em;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .policy-wrapper {
        padding: 0 15px;
    }
    
    .policy-navigation-sidebar {
        padding: 20px;
    }
    
    .policy-document-area {
        padding: 20px 15px;
    }
    
    .intro-heading {
        font-size: 1.8em;
    }
    
    .policy-nav-list {
        flex-direction: column;
    }
    
    .policy-nav-link {
        min-width: unset;
    }
}.terms-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 1px solid #2196f3;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.2);
}

.highlight-box h4 {
    color: #1565c0;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.highlight-box p {
    color: #1976d2;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.entertainment-notice {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border: 2px solid #9c27b0;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

.entertainment-notice .notice-icon {
    font-size: 3em;
    color: #9c27b0;
    flex-shrink: 0;
}

.notice-content h4 {
    color: #7b1fa2;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.notice-content p {
    color: #8e24aa;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.eligibility-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.15);
    border-color: #e94560;
}

.req-icon {
    font-size: 2.5em;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(233, 69, 96, 0.4));
}

.req-details h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.req-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95em;
}

.usage-guidelines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.guideline-positive,
.guideline-negative {
    border-radius: 15px;
    padding: 25px;
}

.guideline-positive {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border: 2px solid #4caf50;
}

.guideline-negative {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 2px solid #f44336;
}

.guideline-positive h4 {
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.guideline-negative h4 {
    color: #c62828;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.virtual-currency-notice {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 2px solid #ff9800;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

.currency-icon {
    font-size: 3em;
    color: #ef6c00;
    flex-shrink: 0;
}

.currency-details h4 {
    color: #e65100;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.currency-details p {
    color: #f57c00;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.prohibited-item {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 1px solid #f44336;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.prohibited-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(244, 67, 54, 0.2);
    border-color: #d32f2f;
}

.prohibition-icon {
    font-size: 2.5em;
    color: #d32f2f;
    margin-bottom: 15px;
    display: block;
}

.prohibited-item h4 {
    color: #c62828;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.prohibited-item p {
    color: #d32f2f;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.ip-protection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.ip-item {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border: 1px solid #9c27b0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.ip-item h4 {
    color: #7b1fa2;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.ip-item p {
    color: #8e24aa;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.disclaimer-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

.disclaimer-icon {
    font-size: 3em;
    color: #e67e22;
    flex-shrink: 0;
}

.disclaimer-content h4 {
    color: #d68910;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.disclaimer-content p {
    color: #b7950b;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.liability-limitation {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

.liability-icon {
    font-size: 3em;
    color: #2e7d32;
    flex-shrink: 0;
}

.liability-content h4 {
    color: #1b5e20;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.liability-content p {
    color: #2e7d32;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.termination-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #e94560;
}

.reason-icon {
    font-size: 2em;
    color: #e94560;
    flex-shrink: 0;
}

.reason-item h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.reason-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .terms-highlights {
        grid-template-columns: 1fr;
    }
    
    .eligibility-requirements {
        grid-template-columns: 1fr;
    }
    
    .usage-guidelines {
        grid-template-columns: 1fr;
    }
    
    .prohibited-grid {
        grid-template-columns: 1fr;
    }
    
    .ip-protection {
        grid-template-columns: 1fr;
    }
    
    .entertainment-notice,
    .virtual-currency-notice,
    .disclaimer-notice,
    .liability-limitation {
        flex-direction: column;
        text-align: center;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .highlight-box,
    .prohibited-item,
    .ip-item {
        padding: 15px;
    }
    
    .requirement-item,
    .reason-item {
        padding: 15px;
    }
    
    .entertainment-notice,
    .virtual-currency-notice,
    .disclaimer-notice,
    .liability-limitation {
        padding: 20px;
    }
    
    .guideline-positive,
    .guideline-negative {
        padding: 20px;
    }
}
.launch-game-btn.active {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(76, 175, 80, 0.4); 
    }
    50% { 
        box-shadow: 0 12px 40px rgba(76, 175, 80, 0.6); 
    }
}

.game-page-container {
    margin-top: 136px;
    min-height: calc(100vh - 136px);
    display: flex;
    flex-direction: column;
}

.game-disclaimer-top {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    padding: 25px 0;
    border-bottom: 3px solid #d32f2f;
}

.disclaimer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.disclaimer-content-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.disclaimer-icon-section {
    flex-shrink: 0;
}

.large-warning-icon {
    font-size: 4em;
    color: #d32f2f;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 10px rgba(211, 47, 47, 0.6)); 
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 20px rgba(211, 47, 47, 0.8)); 
    }
}

.disclaimer-text-section {
    flex: 1;
}

.disclaimer-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 15px;
}

.disclaimer-message {
    font-size: 1.1em;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.disclaimer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.disclaimer-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.age-badge {
    background: #d32f2f;
    color: white;
}

.entertainment-badge {
    background: #ff9800;
    color: white;
}

.no-money-badge {
    background: #2196f3;
    color: white;
}

.game-iframe-container {
    flex: 1;
    background: #000;
    position: relative;
    min-height: 600px;
}

.game-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-header-info {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e94560;
}

.game-title-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.game-title {
    font-size: 2.2em;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.phoenix-icon {
    font-size: 1.2em;
    animation: phoenixGlow 3s ease-in-out infinite;
}

@keyframes phoenixGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.8)); 
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(255, 107, 107, 1)); 
    }
}

.game-subtitle {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

.game-controls {
    display: flex;
    gap: 15px;
}

.fullscreen-btn,
.sound-toggle,
.info-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.fullscreen-btn:hover,
.sound-toggle:hover,
.info-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #4ecdc4;
    transform: scale(1.1);
}

.iframe-wrapper {
    flex: 1;
    position: relative;
    min-height: 600px;
    background: #000;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner-phoenix {
    font-size: 4em;
    animation: phoenixSpin 2s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes phoenixSpin {
    0% { 
        transform: rotate(0deg) scale(1); 
        filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.8)); 
    }
    50% { 
        transform: rotate(180deg) scale(1.2); 
        filter: drop-shadow(0 0 30px rgba(255, 107, 107, 1)); 
    }
    100% { 
        transform: rotate(360deg) scale(1); 
        filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.8)); 
    }
}

.loading-text {
    font-size: 1.3em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.game-disclaimer-bottom {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 40px 0;
    border-top: 3px solid #4ecdc4;
}

.bottom-disclaimer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.reminder-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.reminder-title {
    font-size: 1.6em;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.reminder-icon {
    font-size: 1.3em;
    color: #9c27b0;
}

.reminder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.reminder-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: all 0.3s ease;
}

.reminder-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.15);
    border-color: #e94560;
}

.item-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(233, 69, 96, 0.4));
}

.reminder-item h4 {
    font-size: 1.2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.reminder-item p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.support-section {
    background: rgba(78, 205, 196, 0.1);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.support-title {
    font-size: 1.4em;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.support-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-color: #4ecdc4;
}

@media (max-width: 1024px) {
    .disclaimer-content-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .game-header-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .bottom-disclaimer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reminder-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .game-page-container {
        margin-top: 110px;
    }
    
    .disclaimer-content-flex {
        padding: 20px;
    }
    
    .disclaimer-badges {
        justify-content: center;
    }
    
    .game-header-info {
        padding: 15px 20px;
    }
    
    .game-title {
        font-size: 1.8em;
    }
    
    .game-controls {
        justify-content: center;
    }
    
    .reminder-grid {
        grid-template-columns: 1fr;
    }
    
    .reminder-section,
    .support-section {
        padding: 20px;
    }
    
    .iframe-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .disclaimer-wrapper {
        padding: 0 15px;
    }
    
    .disclaimer-content-flex {
        padding: 15px;
    }
    
    .game-title {
        font-size: 1.5em;
        flex-direction: column;
        gap: 10px;
    }
    
    .fullscreen-btn,
    .sound-toggle,
    .info-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }
    
    .iframe-wrapper {
        min-height: 350px;
    }
}

.iframe-wrapper iframe[src] + .loading-overlay {
    opacity: 0;
    pointer-events: none;
}