/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: #ffffff;
   background: linear-gradient(135deg, #221D7F 0%, #3E1453 50%, #3B1E8A 100%), #FFF;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 13, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid #f39c12;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #f39c12;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #f39c12;
    color: #1a0d2e;
}

.btn-decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #f39c12;
}

.btn-accept:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-decline:hover {
    background: #f39c12;
    color: #1a0d2e;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.30);
background: linear-gradient(90deg, rgba(27, 35, 153, 0.90) 0%, rgba(84, 22, 101, 0.90) 50%, rgba(61, 27, 153, 0.90) 100%);
backdrop-filter: blur(6px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  0;
}

.logo {
    
}

.logo img {
    width: 80px;
    
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #f39c12;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 97px;
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1b69 50%, #764ba2 100%);
    background-image: url(../images/hero.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    padding-bottom: 52px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/hero-pattern.png') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0 30px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Chau Philomene One', serif;
    font-size: 6.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #FBBF24 0%, #FDE047 50%, #FBBF24 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 1;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #86EFAC;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #f39c12;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 16px;
border: 2px solid rgba(248, 113, 113, 0.30);
background: linear-gradient(90deg, #DC2626 0%, #B91C1C 100%);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #ffffff;
   width: fit-content;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    margin: 0 auto;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
}

.play-icon {
    font-size: 14px;
   height: 29px;
}

/* Community Stats in Hero */
.community-stats-hero {
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

.stats-container {
    border-radius: 16px;
border: 1px solid rgba(251, 191, 36, 0.30);
background: linear-gradient(90deg, rgba(127, 29, 29, 0.30) 0%, rgba(20, 83, 45, 0.30) 50%, rgba(127, 29, 29, 0.30) 100%);
    border-radius: 25px;
    padding: 33px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stats-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Chau Philomene One', serif;
}

.stats-container p {
    font-size: 1rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stats-grid-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-item-hero {
    text-align: center;
}

.stat-number-hero {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    
}

.stat-item-hero:nth-child(1) .stat-number-hero {
    color: #f39c12;
}

.stat-item-hero:nth-child(2) .stat-number-hero {
    color: #27ae60;
}

.stat-item-hero:nth-child(3) .stat-number-hero {
    color: #3498db;
}

.stat-label-hero {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: #1a0d2e;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f39c12;
    border: 2px solid #f39c12;
}

.btn-secondary:hover {
    background: #f39c12;
    color: #1a0d2e;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #f39c12;
    font-weight: 700;
    background: linear-gradient(90deg, #FBBF24 0%, #FDE047 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
font-family: "Chau Philomene One";
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: 48px; /* 100% */
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.community-icon {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.secure-icon {
    background: linear-gradient(45deg, #3498db, #5dade2);
}

.entertainment-icon {
    background: linear-gradient(45deg, #e74c3c, #ec7063);
}

.about-feature-content h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: "Chau Philomene One";
}

.about-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.about-mission {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.mission-card {
    border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.20);
background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 100%);
backdrop-filter: blur(6px);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 552px;
    width: 100%;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f39c12;
}

.mission-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "Chau Philomene One";
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 25px;
}

.happy-gaming {
    font-size: 1.1rem;
    color: #FCD34D;
    font-weight: 600;
    margin-top: 15px;
}

/* Games Section */
.games {
    padding: 100px 0;
    
}

.games .container {
    max-width: 1320px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.game-card {
    border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.20);
background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 100%);
backdrop-filter: blur(6px);
    overflow: hidden;
    
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(243, 156, 18, 0.4);
}

.game-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 9999px;
background: rgba(245, 158, 11, 0.90);
backdrop-filter: blur(2px);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
}

.game-rating .star {
    color: #fff;
    font-size: 16px;
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.game-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 20px;
}

.players-count,
.social-coins {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.players-count {
    color: rgba(255, 255, 255, 0.7);
}

.social-coins {
    color: #27ae60;
    font-weight: 500;
}

.game-stats .icon {
    font-size: 14px;
    height: 17px;
}

.btn-play-game {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
background: linear-gradient(90deg, #DC2626 0%, #B91C1C 100%);
    color: #ffffff;
   
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
}

.btn-play-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.btn-play-game .play-icon {
    font-size: 12px;
}

/* Holiday Features */
.holiday-features {
    text-align: center;
    margin-top: 60px;
}

.holiday-features h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 400;
    font-family: "Chau Philomene One";
}

.holiday-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 16px;
border: 1px solid rgba(251, 191, 36, 0.30);
background: linear-gradient(90deg, rgba(20, 83, 45, 0.30) 0%, rgba(127, 29, 29, 0.30) 50%, rgba(20, 83, 45, 0.30) 100%);
padding: 33px;
}

.holiday-features .feature-item {
    text-align: center;
}

.holiday-features .feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.holiday-features h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.holiday-features p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.20);
background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 100%);
backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #f39c12;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.user-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.user-info span {
    color: #27ae60;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.testimonial-header .rating {
    color: #f39c12;
    font-size: 1rem;
}

.testimonial-quote {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
    position: relative;
    padding-left: 32px;
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: rgba(243, 156, 18, 0.5);
    font-family: serif;
    width: 32px;
    height: 32px;
    background-image: url(../images/q.png);
    background-size: contain;
}

.testimonial-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge.verified {
    color: #27ae60;
}

.badge.champion {
    color: #f39c12;
}

.badge-icon {
    font-size: 1rem;
}

.community-stats-footer {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 33px 33px;
    border-radius: 16px;
border: 1px solid rgba(251, 191, 36, 0.30);
background: linear-gradient(90deg, rgba(20, 36, 83, 0.30) 0%, rgba(107, 29, 127, 0.30) 50%, rgba(20, 23, 83, 0.30) 100%);
}

.community-stats-footer h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
     font-family: "Chau Philomene One";
}

.community-stats-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 80px;
}

.stat {
    text-align: center;
}

.stat .stat-number {
    font-size: 30px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    
}

.stats-row .stat:nth-child(1) .stat-number {
    color: #f39c12;
}

.stats-row .stat:nth-child(2) .stat-number {
    color: #27ae60;
}

.stats-row .stat:nth-child(3) .stat-number {
    color: #9b59b6;
}

.stat .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* Important Information Section */
.info {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-icon {
    margin-right: 10px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px auto 0;
    max-width: 896px;
    width: 100%;
}

.info-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border-radius: 16px;
border: 1px solid rgba(96, 165, 250, 0.50);
background: linear-gradient(135deg, rgba(30, 58, 138, 0.30) 0%, rgba(88, 28, 135, 0.30) 100%);
backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.blue-icon {
    background: linear-gradient(45deg, #3498db, #5dade2);
}

.green-icon {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.info-title h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 400;
    font-family: "Chau Philomene One";
}

.info-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.info-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Currency Warning Block */
.currency-warning {
    border-radius: 16px;
border: 4px solid rgba(248, 113, 113, 0.70);
background: linear-gradient(135deg, rgba(127, 29, 29, 0.40) 0%, rgba(124, 45, 18, 0.40) 100%);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
}

.currency-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 45%, rgba(231, 76, 60, 0.1) 50%, transparent 55%);
    animation: warningShine 3s infinite;
}

@keyframes warningShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.warning-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 16px;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.warning-header h3 {
    font-size: 1.8rem;
    color: #FECACA;

    font-weight: 400;
    text-transform: uppercase;
 
     font-family: "Chau Philomene One";
}

.warning-subtitle {
    font-size: 1.1rem;
    color: #FCA5A5;
    font-weight: 600;
    margin: 0;
}

.warning-content {
    padding: 25px;
    border-radius: 8px;
border: 1px solid rgba(248, 113, 113, 0.50);
background: rgba(153, 27, 27, 0.30);
}

.warning-main {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.6;
}

.warning-emphasis {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warning-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Safe Gaming List */

.safe-gaming {
    border-radius: 16px;
border: 1px solid rgba(74, 222, 128, 0.50);
background: linear-gradient(135deg, rgba(20, 83, 45, 0.30) 0%, rgba(6, 78, 59, 0.30) 100%);
backdrop-filter: blur(6px);
}

.safe-gaming-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.safe-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  
}

.check-icon {
    font-size: 1.1rem;
    color: #27ae60;
    flex-shrink: 0;
    margin-top: 2px;
}

.safe-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

.safe-item strong {
    color: #ffffff;
    font-weight: 600;
}

/* Additional Notes */
.additional-notes {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 33px;
    border-radius: 16px;
border: 1px solid rgba(251, 191, 36, 0.30);
background: linear-gradient(135deg, #1D287F 0%, #4E1453 50%, #3D1E8A 100%);
backdrop-filter: blur(6px);
}

.notes-title {
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: "Chau Philomene One";
}

.notes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.note-section {
    
}

.note-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.note-icon {
    font-size: 1.5rem;
}

.note-header h4 {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.note-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    font-size: 0.9rem;
}

.note-list li::before {
    content: '•';
    color: #f39c12;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Final Message */
.final-message {
    border-radius: 12px;
border: 1px solid rgba(192, 132, 252, 0.30);
background: linear-gradient(90deg, rgba(88, 28, 135, 0.30) 0%, rgba(131, 24, 67, 0.30) 50%, rgba(88, 28, 135, 0.30) 100%);
    padding: 40px;
    text-align: center;
}

.final-message h3 {
    font-size: 2rem;
    color: #fff;
    font-family: "Chau Philomene One";
    margin-bottom: 20px;
    font-weight: 400;
}

.final-message p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1b69 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(245, 158, 11, 0.30);
background: linear-gradient(90deg, #1D207F 0%, #501453 50%, #3C1D7F 100%);
}

.footer-content {
    text-align: center;
}

.footer-logo-section {
    margin-bottom: 40px;
}

.footer-logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.footer-logo-icon img {
    width: 100%;
    
}

.footer-brand {
    font-family: 'Chau Philomene One', serif;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: 600;
    margin: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.5), transparent);
    margin: 40px 0;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    font-size: 1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.holiday-message {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
   
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 13, 46, 0.95);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 40px;
    }
    
    .nav-list a {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-content {
        padding: 40px 0 30px;
    }
    
    .stats-container {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .stats-container h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid-hero {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number-hero {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        gap: 30px;
    }
    
    .about-feature-item {
        
        gap: 15px;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .mission-card h3 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .holiday-features .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .holiday-features h3 {
        font-size: 1.6rem;
    }
    
    .holiday-features .feature-icon {
        font-size: 2.5rem;
    }
    
    .game-info {
        padding: 20px;
    }
    
    .game-info h3 {
        font-size: 1.2rem;
    }
    
    .game-info p {
        font-size: 0.9rem;
    }
    
    .game-stats {
        gap: 6px;
    }
    
    .players-count,
    .social-coins {
        font-size: 0.85rem;
    }
    
    .btn-play-game {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .community-stats-footer {
        padding: 40px 20px;
    }
    
    .community-stats-footer h3 {
        font-size: 1.8rem;
    }
    
    .community-stats-footer p {
        font-size: 1rem;
    }
    
    .stat .stat-number {
        font-size: 2.2rem;
    }
    
    .testimonial-header {
        gap: 15px;
    }
    
    .user-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
       
    }
    
    .testimonial-badges {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .stats-row {
        gap: 50px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-content {
        gap: 25px;
    }
    
    .info-block {
        padding: 25px 20px;
    }
    
    .info-header {
        gap: 15px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .info-title h3 {
        font-size: 1.2rem;
    }
    
    .currency-warning {
        padding: 25px 20px;
    }
    
    .warning-header h3 {
        font-size: 1.4rem;
    }
    
    .warning-emphasis {
        font-size: 1.1rem;
    }
    
    .safe-item {
        padding: 12px;
        gap: 10px;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .additional-notes {
        padding: 30px 20px;
    }
    
    .notes-title {
        font-size: 1.5rem;
    }
    
    .final-message {
        padding: 30px 20px;
    }
    
    .final-message h3 {
        font-size: 1.6rem;
    }
    
    .final-message p {
        font-size: 1rem;
    }
    
    .contact-form-section {
        position: static;
    }
    
    .holiday-features .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .holiday-features h3 {
        font-size: 1.6rem;
    }
    
    .holiday-features .feature-icon {
        font-size: 2.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand {
        font-size: 2rem;
    }
    
    .footer-tagline {
        font-size: 1.1rem;
    }
    
    .footer-logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .footer-logo-icon img {
     
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .disclaimer {
        font-size: 0.9rem;
    }
    
    .holiday-message {
        font-size: 1rem;
    }
    
    .footer-brand {
        font-size: 1.8rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-logo-icon {
      
        margin-bottom: 15px;
    }
    
    .footer-logo-icon img {
        
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .disclaimer {
        font-size: 0.85rem;
    }
    
    .holiday-message {
        font-size: 0.95rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-play {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .stats-container {
        padding: 25px 15px;
        margin-top: 30px;
    }
    
    .stats-container h2 {
        font-size: 1.6rem;
    }
    
    .stats-container p {
        font-size: 0.9rem;
    }
    
    .stat-number-hero {
        font-size: 1.8rem !important;
    }
    
    .stat-label-hero {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .about-feature-content h3 {
        font-size: 1.2rem;
    }
    
    .about-feature-content p {
        font-size: 0.9rem;
    }
    
    .mission-card {
        padding: 25px 15px;
    }
    
    .mission-card h3 {
        font-size: 1.3rem;
    }
    
    .mission-card p {
        font-size: 0.9rem;
    }
    
    .mission-icon {
        font-size: 2.5rem;
    }
    
    .happy-gaming {
        font-size: 1rem;
    }
    
    .contact-form {
        
    }
}

iframe {
    width: 100%;
    aspect-ratio: 11 / 6;
    border-radius: 10px;
}
              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                