/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #00111C;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hidden {
    display: none !important;
}

.highlight {
    color: #FFBD10;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.age-modal-content {
    background: #1E293B;
    border: 3px solid #EC4899;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.age-icon {
    margin-bottom: 20px;
}

.age-badge {
    display: inline-block;
    background: #DC2626;
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 54px;
    font-weight: 800;
    font-size: 18px;
}

.age-modal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.age-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    color: #CBD5E1;
}

.age-conditions {
    text-align: left;
    margin-bottom: 20px;
    list-style: none;
}

.age-conditions li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #CBD5E1;
}

.age-conditions li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FDE047;
}

.age-conditions a {
    color: #FDE047;
    text-decoration: underline;
}

.age-warning {
    color: #CBD5E1;
    margin-bottom: 15px;
}

.contact-link {
    color: #FDE047;
    text-decoration: underline;
    display: block;
    margin-bottom: 30px;
}

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

.btn-confirm {
    background: #FDE047;
    color: #1E293B;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    background: #FACC15;
    transform: translateY(-2px);
}

.btn-exit {
    background: transparent;
    color: #EF4444;
    border: 2px solid #EF4444;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-exit:hover {
    background: #EF4444;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Consent Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cookie-content {
    background: #1E293B;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cookie-content p {
    color: #CBD5E1;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-accept-all {
    background: #FDE047;
    color: #1E293B;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept-all:hover {
    background: #FACC15;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: #FDE047;
    border: 2px solid #FDE047;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background: rgba(253, 224, 71, 0.1);
    transform: translateY(-2px);
}

.settings-link {
    color: #FDE047;
    text-decoration: underline;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
   
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
   display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo img {
    width: 30px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    
}

.navigation {
    display: flex;
    align-items: center;
}

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

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #FDE047;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 20px;
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_fusiqqdp/assets/images/hbcg.webp);
    background-position: center;
    background-size: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 14px;
    margin-bottom: 30px;
    color: #E2E8F0;
    line-height: 1.6;
}

.btn-primary {
    border-radius: 10px;
background: #FFBD10;
    color: #1E293B;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #FACC15;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 224, 71, 0.3);
}

.hero-image {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.character-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

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

.decoration-x {
    position: absolute;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.x1 { top: 20%; left: 10%; animation-delay: 0s; }
.x2 { top: 30%; right: 15%; animation-delay: 1s; }
.x3 { top: 60%; left: 5%; animation-delay: 2s; }
.x4 { top: 80%; right: 20%; animation-delay: 3s; }
.x5 { top: 40%; left: 20%; animation-delay: 4s; }
.x6 { top: 70%; right: 10%; animation-delay: 5s; }

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

/* Warning Section */
.warning-section {
    padding: 60px 0;
   
}

.warning-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    border-radius: 36px;
border: 2px solid rgba(55, 0, 255, 0.60);
background: rgba(255, 255, 255, 0.08);
padding: 50px 30px;
}

.warning-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.warning-text p {
    color: #E2E8F0;
    line-height: 1.6;
}

.warning-icon {
    max-width: 196px;
    width: 100%;
}

.warning-icon img {
    width: 100%;
}

.warning-triangle {
    font-size: 48px;
    color: #FDE047;
}

/* Platforms Section */
.platforms-section {
    padding: 80px 0;
}

.platforms-section h2 {
    font-size: 36px;
    font-weight: 700;
   
    margin-bottom: 15px;
}

.section-subtitle {

    color: #E2E8F0;
    margin-bottom: 50px;
    max-width: 870px;
    
    font-size: 14px;
    line-height: 1.6;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.platform-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.platform-card.jackpotjoy {
    border-radius: 30px;
border: 2px solid rgba(55, 0, 255, 0.60);
background: rgba(255, 255, 255, 0.08);
}

.platform-card.admiral {
border-radius: 30px;
border: 2px solid rgba(255, 189, 16, 0.60);
background: rgba(255, 255, 255, 0.08);
}

.platform-card.virgin {
border-radius: 30px;
border: 2px solid rgba(255, 0, 153, 0.60);
background: rgba(255, 255, 255, 0.08);
}

.platform-logo-section {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.platform-card.jackpotjoy .platform-logo-section {
    background: #6366F1;
}

.platform-card.admiral .platform-logo-section {
    background: #D97706;
}

.platform-card.virgin .platform-logo-section {
    background: #EC4899;
}

.platform-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-weight: 700;
}

.platform-brand img {
    width: 164px;
}

.logo-icon {
    font-size: 24px;
    color: white;
}

.logo-text {
    font-size: 24px;
  
}

.admiral-brand {
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.admiral-brand .logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
}

.casino-text {
    font-size: 14px;
    background: #FDE047;
    color: #1E293B;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.virgin-brand {
    align-items: center;
    gap: 8px;
}

.virgin-logo {
    font-size: 24px;
    color: white;
    transform: rotate(45deg);
}

.virgin-brand .logo-text {
    font-size: 28px;
    font-weight: 600;
}

.games-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.platform-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.platform-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #4B5563;
}

.star.filled {
    color: #FDE047;
}

.star.half {
    color: #FDE047;
    position: relative;
}

.star.half:after {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #4B5563;
}

.star.empty {
    color: #4B5563;
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #CBD5E1;
}

.bonus-info {
   
    border-radius: 8px;

    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #E2E8F0;
}

.bonus-info strong {
    color: #FDE047;
}

.license-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #CBD5E1;
    border-radius: 60px;
background: rgba(255, 255, 255, 0.15);
padding: 10px 15px;
}

.ukgc-icon {
    font-size: 16px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    align-items: center;
}

.payment-icon {
    height: 24px;
    width: auto;
    opacity: 0.8;
    filter: brightness(1.2);
}

.btn-visit {
    width: 100%;
    border-radius: 10px;
background: #FFBD10;
    color: #1E293B;
    border: none;
    padding: 18px;
   text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-visit:hover {
    background: #FACC15;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 224, 71, 0.3);
}

/* Compare Section */
.compare-section {
    padding: 80px 0;
  overflow: hidden;
    position: relative;
}

.compare-section h2 {
    font-size: 36px;
    font-weight: 700;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
    margin-bottom: 50px;
}

.compare-section h2 img {
    max-width: 150px;
    width: 100%;
}

.compare-decorative-lines {
    position: absolute;
    top: 30px;
    right: 80px;
    width: 150px;
    height: 60px;
}

.diagonal-lines {
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 2px,
        transparent 2px,
        transparent 8px
    );
    width: 100%;
    height: 100%;
}

.compare-table-container {
    width: 100%;
    margin: 0 auto;
}

.compare-table-header {
    border-radius: 60px;
border: 1px solid rgba(255, 255, 255, 0.20);
background: rgba(55, 0, 255, 0.40);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
    margin-bottom: 7px;
}

.feature-column,
.platform-column {
   
    font-size: 16px;
}

.feature-column {
    text-align: left;
}

.compare-rows {
    

}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px;
    border-radius: 60px;
border: 1px solid rgba(255, 255, 255, 0.20);
background: rgba(255, 255, 255, 0.08);
    align-items: center;
    margin-bottom: 7px;
}

.compare-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    color: white;
    font-size: 16px;
}

.feature-value {
    display: flex;
    align-items: center;
    
    gap: 8px;
    font-weight: 500;
    color: white;
    font-size: 14px;
}

.check-icon {
    color: #FFBD10;
    font-size: 16px;
    background: #ffbb102e;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cross-icon {
    color: #EF4444;
    font-size: 16px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.feature-value.excellent {
    color: #fff;
}

.feature-value.very-good {
    color: #fff;
}

.feature-value.good {
    color: #fff;
}

.feature-value.limited {
    color: #fff;
}

.feature-value.highlight-feature {
   border-radius: 60px;
   padding: 10px 15px;
   width: fit-content;
background: rgba(255, 189, 16, 0.15);
    color: #FDE047;
}

.feature-value.highlight-feature .check-icon {
    background: rgba(253, 224, 71, 0.3);
    color: #FDE047;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

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

.reviews-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    border-radius: 30px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #FDE047;
}

.review-date {
    background: rgba(255, 255, 255, 0.1);
    color: #CBD5E1;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.reviewer-name {
    font-weight: 700;
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #E2E8F0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.helpful-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.helpful-text {
    color: #FDE047;
    font-size: 14px;
    font-weight: 500;
}

.voting-buttons {
    display: flex;
    gap: 10px;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #CBD5E1;
    font-size: 12px;
    font-weight: 500;
}

.vote-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.vote-btn.thumbs-up:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10B981;
    color: #10B981;
}

.vote-btn.thumbs-down:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
    color: #EF4444;
}

.thumb-icon {
    font-size: 14px;
}

.vote-count {
    font-weight: 600;
    min-width: 12px;
    text-align: center;
}

.mexican-character {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Recommendations Section */
.recommendations-section {
    padding: 80px 0;
   
}

.recommendation-card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border-radius: 36px;
border: 2px solid rgba(55, 0, 255, 0.60);
background: rgba(255, 255, 255, 0.08);
}

.rec-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
     margin-bottom: 30px;
}

.rec-head p {
    font-size: 14px;
}

.recommendation-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.recommendation-text h3 {
    font-size: 18px;
    color: #CBD5E1;
    
}

.recommendation-text h2 {
    font-size: 32px;
    font-weight: 700;
   
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.pros {
    border-radius: 24px;
border: 1px solid rgba(0, 200, 17, 0.30);
background: rgba(0, 200, 17, 0.05);
padding: 20px;
}

.cons {
    border-radius: 24px;
border: 1px solid rgba(255, 48, 16, 0.30);
background: rgba(255, 48, 16, 0.05);
padding: 20px;
}

.pros h4,
.cons h4 {
    color: #FDE047;
    margin-bottom: 15px;
    font-weight: 600;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li,
.cons li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #E2E8F0;
    font-size: 14px;
}

.pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
}

.cons li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #EF4444;
}

.recommendation-summary {
    color: #E2E8F0;
    line-height: 1.6;
}

.recommendation-logo {
   max-width: 252px;
   width: 100%;
}

.recommendation-logo img {
    width: 100%;
}

/* Assessment Section */
.assessment-section {
    padding: 80px 0;
    background-image: url(/wp-content/themes/techfile_fusiqqdp/assets/images/assbcg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.assessment-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

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

.assessment-item {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    padding: 30px;
  
    backdrop-filter: blur(10px);
   border-radius: 30px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.assessment-icon img {
    width: 60px;
}

.assessment-item:hover {
    transform: translateY(-5px);
}

.assessment-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.assessment-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FDE047;
}

.assessment-item p {
    color: #E2E8F0;
    line-height: 1.2;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-image: url(/wp-content/themes/techfile_fusiqqdp/assets/images/contbcg.png);
    background-position: center;
    background-size: cover;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    color: white;
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94A3B8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FDE047;
}

.btn-submit {
    background: #FDE047;
    color: #1E293B;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #FACC15;
    transform: translateY(-2px);
}

.contact-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.contact-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.contact-col h3 {
    color: #FFBD10;
font-family: Poppins;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

.contact-col p {
    font-size: 14px;
}

.contact-col a {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.9);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #FDE047;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FDE047;
}

.footer-partners {
    display: flex;
    justify-content: center;
   
   
}

.partners-logos {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.foot-p {
    flex: 0 1 48%;
    width: 100%;
    display: flex;
  border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: rgba(255, 255, 255, 0.05);
    align-items: center;
  height: 92px;
    justify-content: center;
}

.partner-logo {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #94A3B8;
}

.age-restriction {
    background: #DC2626;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.success-content {
    background: #1E293B;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.success-content p {
    color: #CBD5E1;
    margin-bottom: 25px;
}

.btn-close {
    background: #FDE047;
    color: #1E293B;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: #FACC15;
    transform: translateY(-2px);
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* Animation Styles */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

/* Header Transition */
.header {
    transition: transform 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 900px) {
    .navigation {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(30, 41, 59, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .navigation.mobile-active {
        transform: translateX(0);

    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Button Ripple Effect */
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Platform Card Transitions */
.platform-card {
    transition: all 0.3s ease;
}

/* Lazy Loading Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img:not(.lazy) {
    opacity: 1;
}

/* Age Verified Animation */
body.age-verified {
    animation: contentFadeIn 1s ease-out;
}

@keyframes contentFadeIn {
    from {
        opacity: 0.7;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-content,
    .warning-content,
    .reviews-content,
    .recommendation-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .compare-table-header,
    .compare-row {
        
    }
    
    .feature-value {
        justify-content: flex-start;
    }
    
    .compare-decorative-lines {
        display: none;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .navigation {
        /* display: none; */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .platforms-section h2,
    .compare-section h2,
    .reviews-text h2,
    .assessment-section h2,
    .contact-text h2 {
        font-size: 28px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .assessment-grid {
        grid-template-columns: 1fr;
    }
    
    .age-modal-content {
        padding: 30px 20px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
       
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .partners-logos {
        gap: 8px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .helpful-section {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .compare-table-header {
        padding: 15px;
        font-size: 14px;
    }
    
    .compare-row {
        padding: 15px;
        font-size: 14px;
    }
    
    .feature-value {
       
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .platform-card,
    .review-card,
    .assessment-item {
        padding: 20px;
    }

    .t-container {
        overflow-x: auto; /* Горизонтальний скрол */
                -webkit-overflow-scrolling: touch;
                padding-bottom: 20px;
    }

    .compare-table-container {
       
        width: 700px;
        min-width: 700px;
     
    }

    .t-container::-webkit-scrollbar {
                height: 8px;
            }

            .t-container::-webkit-scrollbar-track {
                background-color: #2a2a2a;
                border-radius: 4px;
            }

            .t-container::-webkit-scrollbar-thumb {
                background-color: #6366f1;
                border-radius: 4px;
            }

            .t-container::-webkit-scrollbar-thumb:hover {
                background-color: #8b5cf6;
            }
    
    .recommendation-card {
        padding: 25px 20px;
    }
    
    .age-modal-content {
        margin: 20px;
        padding: 25px 15px;
    }
    
    .age-badge {
        width: 50px;
        height: 50px;
        line-height: 44px;
        font-size: 16px;
    }
}
              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                max-width: 1200px;
                padding: 40px 20px 0;
                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;
              }

              
                

                