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

:root {
    --primary-bg: #2D1B4E;
    --secondary-bg: #3D2B5E;
    --accent-pink: #FF4081;
    --accent-yellow: #FFFF00;
    --accent-lime: #CCFF00;
    --text-white: #FFFFFF;
    --text-gray: #B8B8B8;
    --gradient-pink: linear-gradient(135deg, #FF4081, #E91E63);
    --gradient-text: linear-gradient(135deg, #FF4081, #9C27B0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Anton', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-pink);
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--accent-pink);
    color: var(--text-white);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-content {
    max-width: 600px;
    text-align: center;
}

.cookie-content h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cookie-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.cookie-content a {
    color: var(--accent-pink);
    text-decoration: underline;
}

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

.cookie-consent.hidden {
    display: none;
}

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

.navbar {
    padding: 15px 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand img {
    width: 30px;
}

.navbar-brand a {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.navbar-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: var(--accent-pink);
}

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

.burger-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-title {
    font-size: 84px;
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yellow-text {
    color: var(--accent-lime);
}

.white-text {
    color: var(--text-white);
}

.hero-description {
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 484px;
    width: 100%;
}

.hero-visual img {
    width: 100%;
   
}

.game-interface {
    text-align: center;
    color: var(--text-white);
}

.interface-element {
    font-size: 24px;
    font-weight: 400;
    background: var(--accent-lime);
    color: var(--primary-bg);
    padding: 8px 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hand-icon {
    font-size: 48px;
}

/* Platform Section */
.platform {
    padding: 80px 0;
    overflow: hidden;
}

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

}

.platform-avatars {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.avatar {
    width: 100%;
    max-width: 415px;
}

.avatar img {
    width: 100%;
}

.avatar-1 {
   margin-left: -80px;
}

.avatar-2 {
  margin-right: -80px;
}

.platform-subtitle {
    color: var(--accent-lime);
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-title {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Team Section */
.team {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
    flex: 0 1 22%;
}

.team-member img {
    width: 100%;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-pink);
}

.member-1 {
    background: linear-gradient(135deg, #FF4081, #E91E63);
}

.member-2 {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
}

.member-3 {
    background: linear-gradient(135deg, #FF4081, #9C27B0);
}

.member-4 {
    background: linear-gradient(135deg, #673AB7, #3F51B5);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-member p {
    font-size: 14px;
    color: var(--text-gray);
    font-family: Arial, sans-serif;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    line-height: 1.4;
    font-family: Arial, sans-serif;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.feature-card {
    background: var(--gradient-pink);
    padding: 40px 30px;
    text-align: center;
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #673AB7, #3F51B5);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 400;
}

.feature-card p {
    font-size: 14px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 64, 129, 0.2);
}

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

.footer-info {
    display: flex;
    gap: 60px;
}

.footer-contact p {
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-pink);
}

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

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

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

.social-link:hover {
    background: var(--accent-pink);
    transform: translateY(-2px);
}

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

.footer-bottom p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--text-gray);
}

.cat-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.game-item {
    width: 100%;
    flex: 0 1 30%;
}

.game-item img {
    width: 100%;
}

.cat-title h2 {
    color: #FC4AC6;
    font-size: 72px;
}

.page-visual {
    max-width: 300px;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-title {
        font-size: 72px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .platform-content {
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .burger-btn {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-bg);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .navbar-nav a {
        font-size: 24px;
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .hero-title {
        
    }
    
    .platform-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .avatar {
        margin: 0;
    }
    
    .platform-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .team-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .team-member {
        width: 100%;
        flex: 0 1 45%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 64px;
    }
    
    .platform-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .interface-element {
        font-size: 18px;
    }
    
    .hand-icon {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
}

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

              
                

                