/* ===== GENERAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --primary-color: #6C5CE7;
    --secondary-color: #FD79A8;
    --accent-color: #FDCB6E;
    --success-color: #00B894;
    --dark-color: #2D3436;
    --light-color: #DDD6FE;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.25);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/back.png') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.9;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.hero-btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.hero-btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}



.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.about-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-weight: 600;
    color: var(--dark-color);
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    max-width: 100%;
    height: auto;
}

.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
}

.badge-content {
    text-align: center;
    color: var(--white);
}

.badge-number {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.commitment-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.commitment-section h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.commitment-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.commitment-list li:last-child {
    border-bottom: none;
}

.commitment-list i {
    color: var(--success-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.commitment-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: var(--gradient-accent);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.stat-box .stat-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== GAMES SECTION ===== */
.games-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(108, 92, 231, 0.03) 0%, rgba(253, 121, 168, 0.03) 100%);
    z-index: 1;
}

.games-section .container {
    position: relative;
    z-index: 2;
}

.game-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.8) 0%, rgba(253, 121, 168, 0.8) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.feature-badge {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

.game-content {
    padding: 2rem;
    text-align: center;
}

.game-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.game-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.game-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.game-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.game-btn i {
    font-size: 1rem;
}

.games-disclaimer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    border-left: 4px solid var(--primary-color);
}

.games-disclaimer i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ===== AGE DISCLAIMER ===== */
.age-disclaimer {
    padding: 3rem 0;
    background: #FFF3E0;
    border-top: 3px solid var(--accent-color);
}

.disclaimer-content {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.disclaimer-content i {
    font-size: 2.5rem;
    color: #FF9800;
    margin-bottom: 1rem;
}

.disclaimer-content h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.disclaimer-content p {
    color: #666;
    margin: 0;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: var(--dark-color);
    color: var(--white);
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    padding: 3rem 0;
}

.disclaimer-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    color: var(--dark-color);
}

.disclaimer-icon {
    margin-bottom: 1.5rem;
}

.disclaimer-icon i {
    font-size: 3rem;
    color: #FF6B6B;
}

.disclaimer-box h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.disclaimer-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Footer Links */
.footer-links {
    background: var(--dark-color);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-pages {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
}

.footer-link:hover {
    color: var(--white);
    border-color: var(--primary-color);
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.footer-link i {
    font-size: 1.2rem;
}

/* Footer Images */
.footer-images {
    background: var(--dark-color);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-image-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.footer-img {
    height: 80px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Footer Copyright */
.footer-copyright {
    background: #1a1a1a;
    padding: 2.5rem 0;
}

.copyright-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-footer {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

.copyright-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.copyright-sub {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: var(--gradient-primary);
    padding: 8rem 0 4rem;
    color: var(--white);
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/back.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.contact-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
}

.contact-content {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-info,
.support-topics,
.additional-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-info h3,
.support-topics h3,
.additional-info h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.contact-icon {
    background: var(--gradient-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    font-family: 'Fredoka', sans-serif;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-email {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.contact-email:hover {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.response-time {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #e3f2fd;
    border-radius: var(--border-radius);
    border-left: 4px solid #2196f3;
}

.response-icon i {
    font-size: 1.5rem;
    color: #2196f3;
}

.response-info h5 {
    font-family: 'Fredoka', sans-serif;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.response-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.support-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.support-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    margin-top: 0.25rem;
}

.support-text h5 {
    font-family: 'Fredoka', sans-serif;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.support-text p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.info-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 24px;
    text-align: center;
    margin-top: 0.25rem;
}

.info-content h5 {
    font-family: 'Fredoka', sans-serif;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* ===== POLICY PAGES ===== */
.policy-hero {
    background: var(--gradient-primary);
    padding: 8rem 0 4rem;
    color: var(--white);
    position: relative;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/back.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.policy-hero .container {
    position: relative;
    z-index: 2;
}

.policy-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.policy-title i {
    margin-right: 1rem;
    color: var(--accent-color);
}

.policy-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
}

.policy-content {
    padding: 5rem 0;
    background: #f8f9fa;
}

.policy-document {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-color);
}

.policy-section h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--dark-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.policy-section h4 {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.policy-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-section li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.contact-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.contact-info-box a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-info-box a:hover {
    color: var(--secondary-color);
}

.disclaimer-highlight {
    background: #fff3e0;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #ff9800;
    margin: 2rem 0;
}

.disclaimer-highlight h4 {
    color: #e65100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.disclaimer-highlight i {
    font-size: 1.2rem;
}

.virtual-credits-box {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--success-color);
    margin: 2rem 0;
}

.virtual-credits-box h4 {
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cookie-type-box {
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid;
}

.cookie-type-box.essential {
    background: #f3e5f5;
    border-left-color: var(--primary-color);
}

.cookie-type-box.performance {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.cookie-type-box.functionality {
    background: #e8f5e8;
    border-left-color: var(--success-color);
}

.cookie-type-box.marketing {
    background: #fff3e0;
    border-left-color: #ff9800;
}

.cookie-type-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cookie-type-box h4 i {
    font-size: 1.2rem;
}

.duration-table {
    margin: 2rem 0;
}

.duration-table h4 {
    margin-bottom: 1rem;
}

.duration-table .table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.duration-table .table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border: none;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.browser-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.browser-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.browser-item i {
    font-size: 1.2rem;
}

.consent-info-box {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #ff9800;
    margin: 2rem 0;
}

.consent-info-box h4 {
    color: #e65100;
    margin-bottom: 1rem;
}

.disclaimer-box {
    background: #ffebee;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #f44336;
    margin: 2rem 0;
}

.disclaimer-box p {
    margin-bottom: 1rem;
}

.disclaimer-box ul {
    margin-bottom: 0;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-color);
    text-align: center;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin: 0;
}

.footer-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== GAME PAGES ===== */
.game-header {
    background: var(--gradient-primary);
    padding: 8rem 0 4rem;
    color: var(--white);
    position: relative;
}

.game-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/back.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.game-header .container {
    position: relative;
    z-index: 2;
}

.game-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.game-title i {
    margin-right: 1rem;
    color: var(--accent-color);
}

.game-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
}

.game-content {
    padding: 5rem 0;
    background: #f8f9fa;
}

.game-player {
    margin-bottom: 3rem;
}

.game-frame {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    margin: 0 auto;
    max-width: 820px;
}

.game-frame iframe {
    width: 100%;
    height: auto;
    min-height: 600px;
    border: none;
    display: block;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.9) 0%, rgba(253, 121, 168, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 10;
}

.game-message {
    text-align: center;
}

.game-message i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.game-message h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.game-message p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.game-disclaimer {
    margin-bottom: 3rem;
}

.game-disclaimer .disclaimer-content {
    background: #fff3e0;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #ff9800;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.game-disclaimer .disclaimer-icon {
    flex-shrink: 0;
}

.game-disclaimer .disclaimer-icon i {
    font-size: 2rem;
    color: #e65100;
}

.game-disclaimer h4 {
    font-family: 'Fredoka', sans-serif;
    color: #e65100;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.game-disclaimer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.game-info {
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: 100%;
    margin-bottom: 2rem;
}

.info-card h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    font-size: 1.3rem;
}

.info-card ul,
.info-card ol {
    margin: 0;
    padding-left: 1.5rem;
}

.info-card li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.75rem;
}

.info-card li:last-child {
    margin-bottom: 0;
}

.game-navigation {
    margin-top: 3rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    font-weight: 500;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.nav-btn:hover {
    color: var(--primary-color);
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.nav-btn-primary:hover {
    background: var(--gradient-secondary);
    color: var(--white);
}

.nav-btn i {
    font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-badge {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .commitment-section {
        padding: 2rem;
    }
    
    .commitment-stats {
        margin-top: 2rem;
        flex-direction: row;
        gap: 1rem;
    }

}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        margin: 0.25rem 0;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content {
        margin-bottom: 3rem;
    }
    
    .about-badge {
        position: static;
        margin: 1rem auto 0;
        width: 80px;
        height: 80px;
    }
    
    .badge-number {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }
    
    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .commitment-section {
        padding: 1.5rem;
    }
    
    .commitment-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .games-section {
        padding: 3rem 0;
    }
    
    .game-image {
        height: 200px;
    }
    
    .game-content {
        padding: 1.5rem;
    }
    
    .game-name {
        font-size: 1.3rem;
    }
    
    .footer-disclaimer {
        padding: 2rem 0;
    }
    
    .disclaimer-box {
        padding: 2rem;
    }
    
    .disclaimer-box h4 {
        font-size: 1.5rem;
    }
    
    .footer-pages {
        gap: 1rem;
    }
    
    .footer-link {
        padding: 0.75rem 1.5rem;
    }
    
    .footer-img {
        height: 60px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-content {
        padding: 3rem 0;
    }
    
    .contact-info,
    .support-topics,
    .additional-info {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .policy-title {
        font-size: 2.5rem;
    }
    
    .policy-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-content {
        padding: 3rem 0;
    }
    
    .policy-document {
        padding: 2.5rem;
    }
    
    .browser-instructions {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-subtitle {
        font-size: 1.1rem;
    }
    
    .game-content {
        padding: 3rem 0;
    }
    
    .game-frame iframe {
        min-height: 450px;
    }
    
    .game-message h3 {
        font-size: 1.5rem;
    }
    
    .game-message i {
        font-size: 3rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .nav-btn {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .disclaimer-content {
        padding: 1.5rem;
    }
    
    .disclaimer-content i {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .commitment-section {
        padding: 1rem;
    }
    
    .commitment-section h3 {
        font-size: 1.5rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-box .stat-number {
        font-size: 1.5rem;
    }
    
    .game-image {
        height: 180px;
    }
    
    .game-content {
        padding: 1rem;
    }
    
    .game-name {
        font-size: 1.2rem;
    }
    
    .game-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .game-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .games-disclaimer {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .footer-disclaimer {
        padding: 1.5rem 0;
    }
    
    .disclaimer-box {
        padding: 1.5rem;
    }
    
    .disclaimer-box h4 {
        font-size: 1.3rem;
    }
    
    .disclaimer-box p {
        font-size: 1rem;
    }
    
    .footer-pages {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .footer-image-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-img {
        height: 50px;
    }
    
    .copyright-text {
        font-size: 0.9rem;
    }
    
    .copyright-sub {
        font-size: 0.8rem;
    }
    
    .contact-hero {
        padding: 6rem 0 3rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-info,
    .support-topics,
    .additional-info {
        padding: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .response-time {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .policy-hero {
        padding: 6rem 0 3rem;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-subtitle {
        font-size: 1rem;
    }
    
    .policy-document {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-section h4 {
        font-size: 1.1rem;
    }
    
    .contact-info-box,
    .disclaimer-highlight,
    .virtual-credits-box,
    .cookie-type-box,
    .consent-info-box,
    .disclaimer-box {
        padding: 1.5rem;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    .browser-item {
        padding: 1rem;
    }
    
    .duration-table {
        overflow-x: auto;
    }
    
    .duration-table .table {
        font-size: 0.9rem;
    }
    
    .game-header {
        padding: 6rem 0 3rem;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-subtitle {
        font-size: 1rem;
    }
    
    .game-frame iframe {
        min-height: 350px;
    }
    
    .game-message h3 {
        font-size: 1.3rem;
    }
    
    .game-message i {
        font-size: 2.5rem;
    }
    
    .game-disclaimer .disclaimer-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .game-disclaimer .disclaimer-icon {
        align-self: center;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .nav-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .game-navigation .row {
        text-align: center;
    }
    
    .game-navigation .col-lg-4 {
        margin-bottom: 1rem;
    }
}