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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.mahadisclaimer-banner {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    color: #000;
    text-align: center;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.navbar-container {
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 999;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.brand-logo h1 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.play-now-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.play-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 30px 80px;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b8b8b8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.floating-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.safari-preview h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-stats span {
    background: rgba(255, 107, 53, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 500;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decoration-circle,
.decoration-triangle,
.decoration-square {
    position: absolute;
    opacity: 0.1;
}

.decoration-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    top: 10%;
    right: 10%;
    animation: pulse 4s ease-in-out infinite;
}

.decoration-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 150px solid #ffd700;
    bottom: 20%;
    left: 5%;
    animation: pulse 5s ease-in-out infinite;
}

.decoration-square {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #16213e, #0c0c0c);
    top: 60%;
    right: 5%;
    transform: rotate(45deg);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #b8b8b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
}

.game-showcase {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.3) 0%, rgba(12, 12, 12, 0.5) 100%);
}

.game-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.game-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.game-preview-image {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.safari-theme {
    height: 100%;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1f 50%, #0f2415 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.safari-elements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.safari-elements div {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.elephant-icon { animation-delay: 0s; }
.tree-icon { animation-delay: 0.5s; }
.coin-icon { animation-delay: 1s; }
.gem-icon { animation-delay: 1.5s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.game-title-overlay {
    text-align: center;
}

.game-title-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.game-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: glow-sweep 3s ease-in-out infinite;
}

@keyframes glow-sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.game-name {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8b8;
    margin-bottom: 40px;
}

.game-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.game-play-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.game-play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.features-section {
    background: rgba(12, 12, 12, 0.5);
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

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

.feature-emoji {
    font-size: 3rem;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.about-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.2) 0%, rgba(26, 26, 46, 0.3) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8b8;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #b8b8b8;
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.visual-elements div {
    position: absolute;
    font-size: 4rem;
    animation: orbit 10s linear infinite;
}

.element-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.element-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: -2.5s;
}

.element-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -5s;
}

.element-4 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: -7.5s;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

.footer-section {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #b8b8b8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff6b35;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-disclaimer p {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.6;
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

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

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

@media (max-width: 1200px) {
    .hero-content,
    .game-display,
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 60px 20px;
    }
    
    .game-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer-loading 2s infinite;
}

@keyframes shimmer-loading {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #f7931e, #ffd700);
}
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 140px 30px 80px;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-out;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.last-updated {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 500;
    animation: fadeIn 1s ease-out 0.5s both;
}

.privacy-section {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: sectionReveal 0.6s ease-out forwards;
}

.privacy-section:nth-child(odd) {
    animation-delay: 0.1s;
}

.privacy-section:nth-child(even) {
    animation-delay: 0.2s;
}

.privacy-section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px) translateY(0);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.section-title:hover {
    color: #ff6b35;
}

.section-icon {
    font-size: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.privacy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #b8b8b8;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.privacy-section:hover .privacy-text {
    color: #d0d0d0;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
}

.privacy-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #b8b8b8;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.privacy-list li:hover {
    color: #ffffff;
    padding-left: 35px;
}

.privacy-list li::before {
    content: "🔸";
    position: absolute;
    left: 0;
    top: 10px;
    transition: transform 0.3s ease;
}

.privacy-list li:hover::before {
    transform: scale(1.2);
}

.highlight-box {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight-box:hover::before {
    left: 100%;
}

.highlight-box:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.highlight-text {
    color: #ff6b35;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-section {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: contactGlow 8s ease-in-out infinite;
}

@keyframes contactGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.contact-section:hover {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-info {
    font-size: 1.1rem;
    color: #b8b8b8;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.back-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.back-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 ease;
}

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

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.table-of-contents {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.table-of-contents:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.toc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.toc-list li {
    margin-bottom: 10px;
    padding: 10px 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.toc-list li:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.toc-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.toc-link:hover {
    color: #ffd700;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.privacy-section:target {
    background: rgba(255, 107, 53, 0.1);
    border-left-color: #ffd700;
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

@media (max-width: 1200px) {
    .privacy-container {
        padding: 120px 25px 60px;
        margin: 20px;
    }
    
    .privacy-title {
        font-size: 3rem;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 100px 20px 50px;
        margin: 10px;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-section:hover {
        transform: translateY(-3px);
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-info {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .privacy-text {
        font-size: 0.95rem;
    }
    
    .privacy-list li {
        padding-left: 25px;
        font-size: 0.95rem;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.terms-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px 30px 80px;
    background: rgba(22, 33, 62, 0.4);
    border-radius: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: containerFadeIn 1s ease-out;
}

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

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 3px solid rgba(247, 147, 30, 0.4);
    position: relative;
}

.terms-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700);
    border-radius: 2px;
}

.terms-title {
    font-size: 3.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700, #ff6b35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    animation: titleGradient 4s ease-in-out infinite, slideInFromTop 1.2s ease-out;
}

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

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

.terms-subtitle {
    font-size: 1.3rem;
    color: #d0d0d0;
    margin-bottom: 15px;
    font-weight: 500;
    animation: fadeInDelayed 1s ease-out 0.3s both;
}

.last-updated {
    font-size: 1.1rem;
    color: #f7931e;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(247, 147, 30, 0.15);
    border-radius: 20px;
    display: inline-block;
    animation: fadeInDelayed 1s ease-out 0.5s both;
}

.important-notice {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    animation: noticeSlideIn 1s ease-out 0.7s both;
}

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

.important-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: noticeShimmer 3s ease-in-out infinite;
}

@keyframes noticeShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.notice-content {
    position: relative;
    z-index: 1;
}

.notice-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    font-weight: 500;
}

.terms-section {
    margin-bottom: 45px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    border-left: 5px solid #f7931e;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: sectionAppear 0.8s ease-out forwards;
}

.terms-section:nth-child(even) {
    border-left-color: #ff6b35;
    animation-delay: 0.1s;
}

.terms-section:nth-child(odd) {
    animation-delay: 0.2s;
}

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

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    transition: width 0.5s ease;
    z-index: 0;
}

.terms-section:hover::before {
    width: 100%;
}

.terms-section:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(15px) scale(1.01);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-left-width: 8px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.section-title:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.section-icon {
    font-size: 1.8rem;
    animation: iconPulse 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.terms-section:hover .section-icon {
    transform: scale(1.2) rotate(5deg);
}

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

.terms-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #c0c0c0;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.terms-section:hover .terms-text {
    color: #e0e0e0;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.terms-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: #c0c0c0;
    line-height: 1.7;
    transition: all 0.4s ease;
    border-radius: 8px;
    margin-bottom: 8px;
}

.terms-list li:hover {
    color: #ffffff;
    padding-left: 45px;
    background: rgba(255, 107, 53, 0.08);
    transform: translateX(5px);
}

.terms-list li::before {
    content: "⚡";
    position: absolute;
    left: 8px;
    top: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.terms-list li:hover::before {
    transform: scale(1.3) rotate(10deg);
    left: 15px;
}

.highlight-box {
    background: rgba(255, 107, 53, 0.12);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
    transition: left 0.8s ease;
}

.highlight-box:hover::before {
    left: 100%;
}

.highlight-box:hover {
    background: rgba(255, 107, 53, 0.18);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
}

.highlight-text {
    color: #ff6b35;
    font-weight: 700;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.highlight-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(247, 147, 30, 0.08));
    border: 3px solid rgba(255, 107, 53, 0.4);
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    margin-top: 60px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    animation: contactRotate 12s linear infinite;
}

@keyframes contactRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-section:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(247, 147, 30, 0.12));
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info {
    font-size: 1.15rem;
    color: #d0d0d0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.back-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 35px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    font-size: 1.05rem;
}

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

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

.back-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.table-of-contents {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 45px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.table-of-contents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700, #ff6b35);
    background-size: 200% 100%;
    animation: tocGradient 3s ease-in-out infinite;
}

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

.table-of-contents:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
}

.toc-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.toc-list li {
    margin-bottom: 12px;
    padding: 15px 20px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.toc-list li:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.toc-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    font-size: 1.05rem;
}

.toc-link:hover {
    color: #ffd700;
    transform: translateY(-1px);
}

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

.terms-section:target {
    background: rgba(255, 107, 53, 0.15);
    border-left-color: #ffd700;
    border-left-width: 8px;
    transform: translateX(20px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

@media (max-width: 1200px) {
    .terms-container {
        padding: 120px 25px 60px;
        margin: 20px;
    }
    
    .terms-title {
        font-size: 3.2rem;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .terms-container {
        padding: 100px 20px 50px;
        margin: 15px;
    }
    
    .terms-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .terms-section {
        padding: 25px;
        margin-bottom: 35px;
    }
    
    .terms-section:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .contact-section {
        padding: 35px 25px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-info {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .terms-text {
        font-size: 1rem;
    }
    
    .terms-list li {
        padding-left: 30px;
        font-size: 0.95rem;
    }
    
    .terms-list li:hover {
        padding-left: 35px;
    }
    
    .back-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700);
    z-index: 9999;
    transition: width 0.3s ease;
}

.floating-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 10px;
    display: none;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.floating-nav.visible {
    display: flex;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #ff6b35;
    transform: scale(1.3);
}

.nav-dot:hover {
    background: #ffd700;
    transform: scale(1.2);
}

.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.game-page-container {
    padding-top: 120px;
}

.nav-link.active {
    color: #ffd700;
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
}

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

.fullscreen-btn,
.sound-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.fullscreen-btn:hover,
.sound-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

.game-header {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.6));
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    margin: 0 30px 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.game-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: titlePulse 3s ease-in-out infinite;
}

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

.game-description {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-text {
    font-weight: 600;
    color: #ffffff;
}

.game-disclaimer-top {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.08));
    margin: 0 30px 30px;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.disclaimer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 25px;
}

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

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.disclaimer-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.disclaimer-text h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.disclaimer-text p {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.game-container {
    margin: 0 30px 30px;
}

.game-frame {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 107, 53, 0.4);
}

.game-iframe {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border: none;
    display: block;
}

.game-controls-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 26, 46, 0.8);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.control-group {
    display: flex;
    gap: 15px;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.btn-icon {
    font-size: 1.1rem;
}

.game-info-panel {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-label {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.info-value {
    color: #ffffff;
    font-weight: 600;
}

.status-active {
    color: #4ade80;
}

.game-disclaimer-bottom {
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.8), rgba(22, 33, 62, 0.6));
    margin: 30px;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.disclaimer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-warning {
    margin-bottom: 40px;
}

.warning-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 30px;
}

.warning-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.warning-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #f7931e;
    transition: all 0.3s ease;
}

.warning-section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.warning-section h4 {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.warning-section p {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.support-links {
    text-align: center;
    background: rgba(255, 107, 53, 0.08);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.support-title {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.support-btn {
    background: rgba(255, 107, 53, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.4);
    font-size: 0.9rem;
}

.support-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

.footer-game-info {
    margin-top: 15px;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.footer-game-info p {
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    .game-container,
    .game-header,
    .game-disclaimer-top,
    .game-disclaimer-bottom {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .game-page-container {
        padding-top: 100px;
    }
    
    .game-container,
    .game-header,
    .game-disclaimer-top,
    .game-disclaimer-bottom {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .game-header {
        padding: 30px 20px;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-description {
        font-size: 1.1rem;
    }
    
    .game-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .game-iframe {
        height: 60vh;
        min-height: 400px;
    }
    
    .game-controls-panel {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .game-info-panel {
        gap: 20px;
    }
    
    .warning-content {
        grid-template-columns: 1fr;
    }
    
    .support-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .game-controls {
        gap: 10px;
    }
    
    .fullscreen-btn,
    .sound-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .game-container,
    .game-header,
    .game-disclaimer-top,
    .game-disclaimer-bottom {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .game-header {
        padding: 20px 15px;
    }
    
    .game-title {
        font-size: 1.8rem;
    }
    
    .disclaimer-title,
    .warning-title {
        font-size: 1.5rem;
    }
    
    .game-iframe {
        height: 50vh;
        min-height: 350px;
    }
    
    .control-group {
        flex-direction: column;
        width: 100%;
    }
    
    .control-btn {
        justify-content: center;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .game-controls {
        order: -1;
    }
}

.game-frame:hover {
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
}

.pulsing-border {
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(255, 107, 53, 0.4);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    50% {
        border-color: rgba(255, 107, 53, 0.8);
        box-shadow: 0 25px 70px rgba(255, 107, 53, 0.3);
    }
}

.floating-help {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-help:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.game-status-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.9rem;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.status-online {
    color: #4ade80;
}

.status-loading {
    color: #fbbf24;
}

.status-error {
    color: #ef4444;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20;
    border-radius: 20px;
}

.overlay-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.4);
    backdrop-filter: blur(20px);
    max-width: 400px;
}

.overlay-title {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.overlay-text {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.overlay-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.game-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 0 0 20px 20px;
}

.achievements-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
    color: #000;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 600;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.achievements-popup.show {
    transform: translateX(0);
}

.achievement-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.session-reminder {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.95);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.4);
    backdrop-filter: blur(20px);
    display: none;
    animation: reminderFadeIn 0.5s ease-out;
    z-index: 1000;
}

@keyframes reminderFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.reminder-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.reminder-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.reminder-btn {
    background: rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.5);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reminder-btn:hover {
    background: rgba(255, 107, 53, 0.5);
}

.game-settings-panel {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.settings-toggle {
    background: rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.5);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.settings-toggle:hover {
    background: rgba(255, 107, 53, 0.5);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.setting-switch {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.setting-switch.active {
    background: #ff6b35;
}

.switch-handle {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.setting-switch.active .switch-handle {
    transform: translateX(20px);
}

.connection-status {
    position: absolute;
    top: 50px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 15px;
    color: #ffffff;
    font-size: 0.8rem;
    z-index: 5;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.connection-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: connectionPulse 2s ease-in-out infinite;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.game-tips {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
    border-radius: 15px;
    color: #ffffff;
    font-size: 0.8rem;
    max-width: 250px;
    z-index: 5;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    display: none;
}

.tip-text {
    margin-bottom: 8px;
}

.tip-close {
    background: none;
    border: none;
    color: #ff6b35;
    cursor: pointer;
    font-size: 0.7rem;
    float: right;
}

@media (max-width: 768px) {
    .floating-help {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .session-reminder {
        left: 10px;
        right: 10px;
        transform: none;
        text-align: center;
    }
    
    .game-settings-panel {
        top: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .game-tips {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

.loading-dots {
    display: inline-block;
    animation: loadingDots 1.5s ease-in-out infinite;
}

@keyframes loadingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}
.responsible-gaming-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 30px 80px;
    background: rgba(22, 33, 62, 0.3);
    border-radius: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: containerSlideIn 1s ease-out;
}

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

.rg-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 3px solid rgba(34, 197, 94, 0.4);
    position: relative;
}

.rg-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #16a34a, #15803d);
    border-radius: 2px;
}

.rg-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e, #16a34a, #15803d, #22c55e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    animation: titleShimmer 4s ease-in-out infinite, titleAppear 1.2s ease-out;
}

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

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

.rg-subtitle {
    font-size: 1.4rem;
    color: #d0d0d0;
    margin-bottom: 15px;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.last-updated {
    font-size: 1.1rem;
    color: #22c55e;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.commitment-banner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    animation: bannerSlideIn 1s ease-out 0.7s both;
}

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

.commitment-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    animation: bannerShimmer 3s ease-in-out infinite;
}

@keyframes bannerShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.commitment-content {
    position: relative;
    z-index: 1;
}

.commitment-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.commitment-text {
    font-size: 1.15rem;
    color: #e0e0e0;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
}

.quick-help-section {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    animation: urgentPulse 3s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% {
        border-color: rgba(239, 68, 68, 0.3);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.1);
    }
    50% {
        border-color: rgba(239, 68, 68, 0.5);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.05);
    }
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.help-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.help-card.urgent {
    border-color: rgba(239, 68, 68, 0.4);
}

.help-card.support {
    border-color: rgba(59, 130, 246, 0.4);
}

.help-card.resources {
    border-color: rgba(34, 197, 94, 0.4);
}

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

.help-card.urgent:hover {
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(239, 68, 68, 0.08);
}

.help-card.support:hover {
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.08);
}

.help-card.resources:hover {
    border-color: rgba(34, 197, 94, 0.6);
    background: rgba(34, 197, 94, 0.08);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.help-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-card p {
    color: #b8b8b8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.help-link {
    display: inline-block;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.help-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.5);
}

.rg-section {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border-left: 5px solid #22c55e;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: sectionReveal 0.8s ease-out forwards;
}

.rg-section:nth-child(odd) {
    animation-delay: 0.1s;
}

.rg-section:nth-child(even) {
    animation-delay: 0.2s;
    border-left-color: #16a34a;
}

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

.rg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.05), rgba(22, 163, 74, 0.05));
    transition: width 0.5s ease;
    z-index: 0;
}

.rg-section:hover::before {
    width: 100%;
}

.rg-section:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px) scale(1.01);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
    border-left-width: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.section-title:hover {
    color: #22c55e;
    transform: translateY(-2px);
}

.section-icon {
    font-size: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.rg-section:hover .section-icon {
    transform: scale(1.2) rotate(5deg);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.rg-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #c0c0c0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.rg-section:hover .rg-text {
    color: #e0e0e0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.info-card {
    background: rgba(34, 197, 94, 0.08);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(34, 197, 94, 0.12);
    transform: translateY(-3px);
    border-color: rgba(34, 197, 94, 0.5);
}

.info-card h4 {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p {
    color: #d0d0d0;
    line-height: 1.6;
}

.habits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.habit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 18px;
    border: 2px solid rgba(34, 197, 94, 0.3);
    transition: all 0.4s ease;
    text-align: center;
}

.habit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.habit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: habitIconPulse 2s ease-in-out infinite;
}

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

.habit-card h4 {
    color: #22c55e;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.habit-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.habit-card li {
    color: #c0c0c0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.habit-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.warning-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.warning-category {
    background: rgba(239, 68, 68, 0.08);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.warning-category:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-3px);
}

.category-title {
    color: #ef4444;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    color: #d0d0d0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.warning-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.warning-notice {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

.warning-notice h4 {
    color: #ef4444;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.warning-notice p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.tool-card {
    background: rgba(59, 130, 246, 0.08);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.tool-card:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
}

.tool-card h4 {
    color: #3b82f6;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tool-card p {
    color: #d0d0d0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tool-card ul {
    list-style: none;
    padding: 0;
}

.tool-card li {
    color: #c0c0c0;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.tool-card li::before {
    content: "🔧";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.help-option {
    background: rgba(168, 85, 247, 0.08);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.help-option:hover {
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-3px);
}

.help-option h4 {
    color: #a855f7;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-option p {
    color: #d0d0d0;
    line-height: 1.7;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.resource-card.international {
    border-color: rgba(59, 130, 246, 0.4);
}

.resource-card.india {
    border-color: rgba(255, 153, 51, 0.4);
}

.resource-card.apps {
    border-color: rgba(168, 85, 247, 0.4);
}

.resource-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.resource-card h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #d0d0d0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.link-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.link-text {
    font-weight: 500;
}

.support-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.strategy-card {
    background: rgba(34, 197, 94, 0.08);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-3px);
}

.strategy-card h4 {
    color: #22c55e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.strategy-card ul {
    list-style: none;
    padding: 0;
}

.strategy-card li {
    color: #c0c0c0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.strategy-card li::before {
    content: "💡";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.commitment-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.08));
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 25px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.commitment-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 30px;
}

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

.commitment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.commitment-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.commitment-item p {
    color: #c0c0c0;
    line-height: 1.6;
}

.contact-section {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(34, 197, 94, 0.08));
    border: 3px solid rgba(34, 197, 94, 0.4);
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    margin-top: 60px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
    animation: contactRotate 15s linear infinite;
}

@keyframes contactRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-section:hover {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.18), rgba(34, 197, 94, 0.12));
    border-color: rgba(34, 197, 94, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.2);
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info {
    font-size: 1.15rem;
    color: #d0d0d0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-method a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    color: #16a34a;
    text-decoration: underline;
}

.final-message {
    background: rgba(34, 197, 94, 0.15);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    font-weight: 600;
    color: #22c55e;
    text-align: center;
}

.back-button {
    display: inline-block;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: #000;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 35px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
    font-size: 1.05rem;
}

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

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

.back-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.6);
}

.footer-rg-info {
    margin-top: 15px;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.footer-rg-info p {
    margin-bottom: 5px;
}

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

@media (max-width: 1200px) {
    .responsible-gaming-container {
        padding: 120px 25px 60px;
        margin: 20px;
    }
    
    .rg-title {
        font-size: 3.2rem;
    }
    
    .habits-grid,
    .tools-grid,
    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .responsible-gaming-container {
        padding: 100px 20px 50px;
        margin: 15px;
    }
    
    .rg-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .rg-section {
        padding: 30px;
        margin-bottom: 35px;
    }
    
    .rg-section:hover {
        transform: translateY(-3px) scale(1.01);
    }
    
    .help-grid,
    .info-cards,
    .habits-grid,
    .warning-categories,
    .tools-grid,
    .help-options,
    .resources-grid,
    .support-strategies,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 35px 25px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rg-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .rg-text {
        font-size: 1rem;
    }
    
    .back-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .commitment-section,
    .contact-section {
        padding: 25px 20px;
    }
}