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

:root {
    --primary-purple: #7C3AED;
    --dark-purple: #1a0b2e;
    --darker-purple: #0f0520;
    --light-purple: #9F7AEA;
    --cyan: #00E5FF;
    --white: #ffffff;
    --gray: #94A3B8;
    --light-gray: #E2E8F0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--darker-purple);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 20, 50, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid var(--primary-purple);
    animation: slideUp 0.5s ease;
    display: none;
}

.cookie-consent.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--light-gray);
    font-size: 14px;
    flex: 1;
    min-width: 250px;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--primary-purple);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-purple);
}

.cookie-btn.decline:hover {
    background: rgba(124, 58, 237, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 5, 32, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-purple);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

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

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

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

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

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-purple);
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(180deg, var(--dark-purple) 0%, var(--darker-purple) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.2), transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.h-btn {
    max-width: 120px;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
background: linear-gradient(113deg, #8D1CFE 29.4%, #0038ED 105.15%);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}



.card-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 450px;
}

.game-card {
    position: absolute;
    width: 280px;
    height: 350px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.game-card img {
    width: 100%;
    height: 100%;
}

.card-1 {
    background: linear-gradient(135deg, #00D4FF, #0066FF);
    transform: rotate(-8deg) translateX(-40px);
    z-index: 1;
}

.card-2 {
    background: linear-gradient(135deg, #E0E0E0, #BDBDBD);
    transform: translateY(30px);
    z-index: 2;
}

.card-3 {
    background: linear-gradient(135deg, var(--primary-purple), #C026D3);
    transform: rotate(8deg) translateX(40px) translateY(60px);
    z-index: 3;
}

.card-stack:hover .card-1 {
    transform: rotate(-16deg) translateX(-80px);
}

.card-stack:hover .card-3 {
    transform: rotate(16deg) translateX(80px) translateY(100px);
}

/* Gaming Banner */
.gaming-banner {
    background: linear-gradient(113deg, #8D1CFE 29.4%, #0038ED 105.15%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    transform: rotate(-2deg) scale(1.1);
    margin: 80px 0;
}

.banner-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.banner-text {
    font-size: 48px;
    font-weight: 800;
    color:transparent;
    padding-right: 40px;
   -webkit-text-stroke-width: 4px;
-webkit-text-stroke-color: var(--White, #FFF);
font-family: Inter;
font-size: 136px;
font-style: normal;
font-weight: 800;
line-height: 146px; /* 107.353% */
letter-spacing: -4.08px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Releases Section */
.releases {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.filter-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.2);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

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

.game-item {
    background: rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
background: #FFF;
padding: 10px;
text-decoration: none;
}

.game-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.game-thumbnail {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

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

.game-1 {
    background: linear-gradient(135deg, #FFB6C1, #DDA0DD);
}

.game-2 {
    background: linear-gradient(135deg, #CD5C5C, #8B4513);
}

.game-3 {
    background: linear-gradient(135deg, #00CED1, #4682B4);
}

.game-4 {
    background: linear-gradient(135deg, #87CEEB, #4169E1);
}

.game-5 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.game-6 {
    background: linear-gradient(135deg, #98D8C8, #6C91C2);
}

.game-title {
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #000;
}

/* Legacy Section */
.legacy {
    padding: 100px 0;
}

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

.legacy-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.legacy-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.legacy-icon {
    width: 60px;
    height: 60px;


    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

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

.legacy-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.legacy-description {
    color: var(--gray);
    line-height: 1.8;
}

/* Spotlight Section */
.spotlight {
    padding: 100px 0;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.talent-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.talent-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.talent-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    flex-shrink: 0;
}

.talent-avatar img {
    width: 100%;
}

.talent-name {
    font-weight: 600;
    font-size: 16px;
}

/* Community Section */
.community {
    padding: 100px 0;
}

.community-content {
    background: linear-gradient(135deg, var(--primary-purple), #C026D3);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.community-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
}

.community-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.community-content .btn {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--dark-purple);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;


    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.social-link:hover {
   
    transform: translateY(-3px);
}

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

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

.footer-link {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-contact p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-title {
        font-size: 72px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .community-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 5, 32, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .header .btn-primary {
        display: none;
    }
    
    .hero-content {
       display: flex;
       flex-direction: column;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-stats {
    
        flex-wrap: wrap;
    }
    
    .hero-image {
        max-width: 400px;
        width: 100%;
    }
    
    .card-stack {
        width: 100%;
    }
    
    .game-card {
       
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .community-title {
        font-size: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .banner-text {
        font-size: 72px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .community-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .legacy-grid {
        grid-template-columns: 1fr;
    }
    
    .talent-grid {
        grid-template-columns: 1fr;
    }
}

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

              
                

                