* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.hero {
    /*min-height: 100vh;*/
    background: linear-gradient(135deg, #a020f0 0%, #e91e63 25%, #ff6b9d 50%, #ffa726 75%, #ff9800 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 35, 126, 0.6) 100%);
    pointer-events: none;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: white;
    font-weight: 400;
    letter-spacing: 2px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    /*background: white;*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.hero-content {
    padding: 80px 0 100px;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 12vw, 140px);
    color: white;
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;


}

.hero-title .line1 {
    display: block;
    opacity: 0.95;
}

.hero-title .line2 {
    display: block;
    opacity: 0.7;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: end;
    margin-top: 60px;
}

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

.stats-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: white;
    line-height: 1;
    font-weight: 400;
}

.stats-number sup {
    font-size: 40px;
    margin-left: 5px;
}

.stats-label {
    color: white;
    font-size: 18px;
    font-weight: 500;
    max-width: 180px;
    position: relative;
    padding-bottom: 15px;
}

.stats-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: white;
    opacity: 0.5;
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description-text {
    color: white;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Montserrat', sans-serif;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(50px, 10vw, 100px);
    }

    .stats-number {
        font-size: 60px;
    }

    nav {
        gap: 25px;
    }
}

@media (max-width: 640px) {
    header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    nav {
        gap: 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: clamp(40px, 9vw, 70px);
        margin-bottom: 30px;
    }

    .hero-content {
        padding: 40px 0 60px;
    }

    .stats-number {
        font-size: 48px;
    }

    .stats-label {
        font-size: 16px;
    }

    .description-text {
        font-size: 14px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 15px;
    }
}

.hero {

    background: linear-gradient(135deg, #a020f0 0%, #e91e63 25%, #ff6b9d 50%, #ffa726 75%, #ff9800 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 35, 126, 0.6) 100%);
    pointer-events: none;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: white;
    font-weight: 400;
    letter-spacing: 2px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    /*background: white;*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

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

.burger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

@media (max-width: 640px) {
    .burger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(160, 32, 240, 0.98) 0%, rgba(233, 30, 99, 0.98) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        backdrop-filter: blur(10px);
    }



    nav a {
        font-size: 24px;
        font-weight: 600;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-title {
        font-size: clamp(40px, 9vw, 70px);
        margin-bottom: 30px;
    }

    .hero-content {
        padding: 40px 0 60px;
    }

    .stats-number {
        font-size: 48px;
    }

    .stats-label {
        font-size: 16px;
    }

    .description-text {
        font-size: 14px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 15px;
    }
}

.about-section {
    background: #000;
    padding: 100px 0;
}

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

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 100%);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}
.text-content{
    width: 100%;
    max-width: 600px;
}
.section-content {
   display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.section-title {
    color: white;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;

    leading-trim: both;
    text-edge: cap;
    font-family: "Bebas Neue";
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 66px */
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #1a237e 0%, #4a148c 50%, #d81b60 100%);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.card-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
    color: white;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 15px;
}

.card-link::after {
    content: '→';
    font-size: 20px;
}

.card-label {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* Second section */
.features-section {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 80px;
    align-items: start;
}

.gradient-card {
    position: relative;
    /*border-radius: 20px;*/
    overflow: hidden;
    aspect-ratio: 4/5;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gradient-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
    );
}

.card-quote {
    position: relative;
    z-index: 2;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    color: white;
}

.card-quote::before {
    content: '●';
    display: block;
    font-size: 30px;
    margin-bottom: 20px;
    color: #ff6b9d;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-bullet {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin-top: 8px;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

@media (max-width: 968px) {
    .section-content,
    .features-section {
        /*grid-template-columns: 1fr;*/
        gap: 50px;
    }

    .container {
        padding: 0 20px;
    }

    .about-section {
        padding: 60px 0;
    }

    .section-content {
        margin-bottom: 80px;
    }

    .section-title {
        font-size: clamp(35px, 8vw, 50px);
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 40px 0;
    }

    .section-content {
        margin-bottom: 60px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 22px;
    }

    .section-title {
        font-size: clamp(30px, 7vw, 40px);
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 14px;
    }

    .card-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .card-text {
        font-size: 16px;
    }

    .feature-content h3 {
        font-size: 15px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .card-quote {
        font-size: 16px;
    }
}

/* Features Section */
.features-section {
    background: #000;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    display: flex;

    gap: 20px;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
    rgba(255, 107, 157, 0.15) 0%,
    rgba(138, 43, 226, 0.1) 30%,
    transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    /*z-index: 2;*/
}

.features-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.features-title .line1 {
    display: block;
    color: white;
}

.features-title .line2 {
    display: block;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 107, 157, 0.8) 50%, rgba(255, 167, 38, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.feature-card {

    border: 1px solid rgba(255, 255, 255, 0.05);

    padding: 45px 40px;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;


    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15.21875px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15.21875px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
    rgba(255, 107, 157, 0.1) 0%,
    transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    color: white;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 157, 0.5) 50%,
    transparent 100%
    );
    margin: 0 0 80px 0;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: white;
    font-weight: 400;
    letter-spacing: 2px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;

    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

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

.footer-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 400;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #ff6b9d;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

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

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s;
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.facebook {
    background: #1877F2;
}

.social-link:hover {
    transform: scale(1.1);
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .features-section {
        padding: 60px 0 80px;
    }

    .features-title {
        font-size: clamp(28px, 7vw, 40px);
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 35px 30px;
    }

    .feature-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-logo {
        justify-content: center;
        font-size: 28px;
    }

    .footer-links {
        gap: 15px;
    }
}

a {
    text-decoration: none;
}

.games-section {
    background: #000;
    padding: 100px 0;
}

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

/* Top Section */
.top-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.phone-mockup {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 40px;
    /*padding: 20px;*/
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
}

.phone-screen {
    background: #000;
    border-radius: 30px;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;

}

.game-tile {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    width: 150px;
    /*height: 100px;*/
    transition: transform 0.3s;
}

.game-tile:hover {
    transform: scale(1.05);
}

.game-tile img {
    width: 100%;
    /*height: 200px;*/
    object-fit: cover;
}

/* Gradient placeholders for game tiles */
.tile-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.tile-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tile-3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.tile-4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.tile-5 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.tile-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.tile-7 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.tile-8 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.tile-9 {
    background: linear-gradient(135deg, #ff6e7f 0%, #bfe9ff 100%);
}

.games-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
}

.content-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Montserrat', sans-serif;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

/* Bottom Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}


.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.3);
}

.info-card:hover::before {
    opacity: 1;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    color: white;
    z-index: 2;
}

.card-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.avatar-illustration {
    width: 120px;
    height: 120px;
    margin-top: auto;
    align-self: flex-end;
    position: relative;
    z-index: 2;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ff9a9e 100%);
    position: relative;
}


@media (max-width: 968px) {
    .top-content,
    .bottom-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .games-section {
        padding: 60px 0;
    }

    .top-content {
        margin-bottom: 60px;
    }

    .phone-mockup {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .games-section {
        padding: 40px 0;
    }

    .top-content {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .section-description {
        font-size: 14px;
    }

    .phone-screen {
        /*padding: 20px 15px;*/
        gap: 10px;
    }

    .info-card {
        padding: 35px 30px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 13px;
    }

    .avatar-illustration {
        width: 100px;
        height: 100px;
    }
}


.game-detail-section {
    background: #000;
    padding: 80px 0 100px;
}

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

.game-header {
    text-align: center;
    margin-bottom: 50px;
}

.game-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.game-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 80px);
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}

.game-intro {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 60px;
}

.feature-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 35px;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
    rgba(255, 107, 157, 0.1) 0%,
    transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.feature-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.center-card {
    background: linear-gradient(180deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    border-radius: 25px;
    padding: 0;
    position: relative;
    aspect-ratio: 4/5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.center-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%
    );
}
.center-card:hover {
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
}
.character-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character {
    width: 70%;
    height: 80%;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    margin-bottom: 20px;
}

.glasses {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 25%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    border: 4px solid #333;
}

.glasses::before,
.glasses::after {
    content: '';
    position: absolute;
    width: 45%;
    height: 90%;
    top: 5%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.glasses::before {
    left: 5%;
}

.glasses::after {
    right: 5%;
}

.hair {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 30%;
    background: #654321;
    border-radius: 50% 50% 0 0;
}

.decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b9d 0%, #a855f7 100%);
    border-radius: 10px;
    transform: rotate(45deg);
}

.decoration-1 {
    top: 15%;
    right: 15%;
    animation: float 3s ease-in-out infinite;
}

.decoration-2 {
    top: 25%;
    right: 5%;
    width: 30px;
    height: 30px;
    animation: float 4s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: rotate(45deg) translateY(0px);
    }
    50% {
        transform: rotate(45deg) translateY(-15px);
    }
}

.center-text {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 80%;
}

.center-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .center-card {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .game-detail-section {
        padding: 50px 0 70px;
    }

    .game-title {
        font-size: clamp(36px, 9vw, 60px);
        margin-bottom: 20px;
    }

    .game-intro {
        font-size: 14px;
    }

    .features-grid {
        margin-top: 40px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    .center-text h3 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .features-section, .section-content {

    display: flex;
flex-direction: column;

}

}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.features-grid1{
      display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
@media (max-width: 768px) {
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.features-grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
}
 nav.active {

        right: 0;

    }
 /*#nav{*/
 /*    z-index: 9999;*/
 /*}*/
