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

html {
    scroll-behavior: smooth;
}

body {
   font-family: 'Luckiest Guy', cursive;
    background-color: #0C0C0C;
    color: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Luckiest Guy', cursive;
    font-weight: normal;
    letter-spacing: 0.02em;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;

    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-content {
    max-width: 600px;
    padding: 40px;
    text-align: center;
    background: #111;
    border-radius: 20px;
    border: 1px solid #333;
}

.cookie-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
    text-transform: uppercase;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refuse {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid #333;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover, .btn-refuse:hover {
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-family: 'Luckiest Guy', cursive;
    font-size: 20px;
}

.logo img {
    width: 30px;
}

.nav-menu {
    display: flex;
}

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

.nav-link {
    color: white;
    text-decoration: none;

    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B5CF6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: white;
    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;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 1) 70%);
}

.hero-content {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.games-count {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #8B5CF6, transparent);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #8B5CF6;
    border-radius: 50%;
    animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
    0%, 20% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(50px); opacity: 0; }
}

/* Community Section */
.community {
    padding: 150px 0;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.03) 0%, rgba(0, 0, 0, 1) 70%);
    overflow-x: clip;
}

.community-floating-cards {
    position: relative;
    height: 600px;
    margin-bottom: 100px;
}

.floating-card {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20px;
    left: 5%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 80px;
    right: 8%;
    animation-delay: -1s;
}

.floating-card:nth-child(3) {
    bottom: 200px;
    left: 8%;
    animation-delay: -2s;
}

.floating-card:nth-child(4) {
    bottom: 120px;
    right: 5%;
    animation-delay: -3s;
}

.floating-card:nth-child(5) {
    top: 150px;
    left: 45%;
    animation-delay: -4s;
}

.floating-card:nth-child(6) {
    bottom: 300px;
    right: 40%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

.player-card {
    background: #fff;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 25px;
    padding-left: 7%;
    max-width: 340px;
    min-width: 280px;
    backdrop-filter: blur(15px);
   color: #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    border-radius: 20px 0 0 20px;
}

.player-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.6);
}

.player-name {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
}

.player-quote {
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.4;
}

.card-1 {
    z-index: -1;
}

.card-2 {
    
    border-color: rgba(236, 72, 153, 0.3);
}

.card-2::before {
    background: linear-gradient(90deg, #EC4899, #3B82F6);
}

.card-2:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
}

.card-3 {
    
    border-color: rgba(59, 130, 246, 0.3);
}

.card-3::before {
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
}

.card-3:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.card-4 {
   
    border-color: rgba(236, 72, 153, 0.3);
}

.card-4::before {
    background: linear-gradient(90deg, #EC4899, #8B5CF6);
}

.card-4:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
}

.card-5 {
  z-index: -1;
    border-color: rgba(139, 92, 246, 0.3);
}

.card-5::before {
    background: linear-gradient(90deg, #8B5CF6, #3B82F6);
}

.card-5:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.card-6 {
   z-index: -1;
    border-color: rgba(59, 130, 246, 0.3);
}

.card-6::before {
    background: linear-gradient(90deg, #3B82F6, #EC4899);
}

.card-6:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.community-text {
   
    margin: 80px 0;
    position: relative;
}

.community-text h2 {
    font-size: clamp(32px, 6vw, 60px);
    line-height: 1.2;
    text-transform: uppercase;
}

/* Rating Section */
.rating {
    padding: 50px 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.03) 0%, rgba(0, 0, 0, 1) 70%);
}

.rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.rating-number {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.number-large {
    font-family: 'Luckiest Guy', cursive;
    font-size: 120px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.9;
}

.number-text {
    font-size: 24px;
    color: #ccc;
    text-transform: uppercase;
    margin: 0 10px;
}

.number-fade {
    font-family: 'Luckiest Guy', cursive;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.0);
    line-height: 0.9;
    z-index: -1;
    -webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #FFF;
line-height: 90%; /* 192.6px */
text-transform: uppercase;
}

.rating-text {
    font-family: 'Luckiest Guy', cursive;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

/* Stats Section */
.stats {
    padding: 80px 0;
}

.stats-card {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.stats-number {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(80px, 15vw, 150px);
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stats-text {
    font-size: 14px;
    line-height: 1.6;
    color: white;
    text-transform: uppercase;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

/* Features Section */
.features {
    padding: 100px 0;
}

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

.features-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.2;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    text-transform: uppercase;
}

.features-list span {
    font-size: 20px;
    flex-shrink: 0;
}

.features-image {
    max-width: 524px;
    width: 100%;
}

.features-image img {
    width: 100%;
}



/* Footer */
.footer {
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(0, 0, 0, 1));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-info p {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-policies {
    display: flex;
    gap: 30px;
}

.footer-policies a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: #8B5CF6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link img {
    width: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.games-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.game-item {
    width: 100%;
    flex: 0 1 32%;
    margin: -20px;
    aspect-ratio: 1;
    border-radius: 40px;
    overflow: hidden;
    transform: rotate(5deg);
}

.game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-game {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-content {
    max-width: 550px;
    width: 100%;
     display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.page-image {
    max-width: 550px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .hero-title {
        font-size: 12vw;
    }
    
    .community-floating-cards {
        height: auto;
        margin-bottom: 60px;
    }
    
    .floating-card {
       
        animation: float 4s ease-in-out infinite;
    }
    
    .floating-card:nth-child(1) { animation-delay: 0s; }
    .floating-card:nth-child(2) { animation-delay: -0.5s; }
    .floating-card:nth-child(3) { animation-delay: -1s; }
    .floating-card:nth-child(4) { animation-delay: -1.5s; }
    .floating-card:nth-child(5) { animation-delay: -2s; }
    .floating-card:nth-child(6) { animation-delay: -2.5s; }
    
    .player-card {
        padding-left: 10%;
    }
    
    .rating-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .rating-text {
        text-align: center;
        font-size: 24px;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-policies {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px;
    }
    
    .cookie-content h2 {
        font-size: 32px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    .about-game {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 14vw;
    }
    
    .community-text h2 {
        font-size: clamp(24px, 6vw, 40px);
    }

    .game-item {
        flex: 0 1 46%;
    }
    
    .number-large {
        font-size: 80px;
    }
    
    .rating-text {
        font-size: 20px;
    }

     .player-card {
        padding-left: 18%;
    }
    
    .stats-number {
        font-size: clamp(60px, 15vw, 100px);
    }
    
    .gaming-setup {
        height: 200px;
    }
    
    .monitor {
        width: 150px;
        height: 90px;
    }
}

              .page {
                padding: 140px 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;
              }

              
                

                