@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #14b8a6;
    --accent-color: #f59e0b;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============ HEADER & NAVIGATION ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
    background: transparent;
}

header.sticky {
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

header .logo {
    width: 160px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

header.sticky .logo {
    width: 140px;
}

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

header .menu a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

header.sticky .menu a {
    color: var(--text-dark);
}

header .menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

header .menu a:hover::after {
    width: 100%;
}

header .menu a i {
    margin-right: 8px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
    vertical-align: middle;
}

header.sticky .menu a i {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

header .menu a:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

header.sticky .menu a:hover i {
    background: var(--primary-color);
    color: var(--white);
}

header .menu-btn {
    display: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

header.sticky .menu-btn {
    color: var(--text-dark);
}

header .menu-btn:hover {
    transform: scale(1.1);
}

/* ============ HERO/BANNER SECTION ============ */
.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../imgs/BG.jpg) no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    transform: skewY(-3deg);
    z-index: 1;
}

.banner-header-info {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 150px 5% 200px;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-header-info img {
    width: 280px;
    height: auto;
    margin-bottom: 40px;
    animation: floatAnimation 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

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

.banner-header-info p {
    color: var(--white);
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 50px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-header-btn ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-header-btn ul li {
    list-style: none;
}

.banner-header-btn ul li a {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-game-btn a {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.banner-game-btn a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-light);
}

.banner-contact-btn a {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.banner-contact-btn a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ============ CONTENT SECTIONS ============ */
.content {
    position: relative;
    z-index: 3;
}

/* Section Headers */
.games-header,
.header2 {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 5%;
}

.games-header h1,
.header2 h1,
.anim {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.games-header h1::after,
.header2 h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.header2 p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* ============ HIT GAME SECTION ============ */
.hit-game-section {
    padding: 100px 5% 150px;
    background: var(--gradient-3);
    position: relative;
    overflow: hidden;
}

.hit-game-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    transform: skewY(-3deg);
}

.hit-game-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    transform: skewY(-3deg);
}

.games-header {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.games-header h1 {
    color: var(--white);
}

.games-header h1::after {
    background: var(--white);
}

.hit-img-btn {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hit-img {
    background: var(--white);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.hit-img:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.hit-img img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.hit-about-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    max-width: 500px;
}

.about-game h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.about-game em {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    font-weight: 300;
}

.store-btn {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn a img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.store-btn a img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ============ GAMES GRID ============ */
.games-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.games-grid li {
    list-style: none;
}

.xop-box {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.xop-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.xop-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.xop-box:hover img {
    transform: scale(1.05);
}

.xop-box h1 {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    background: var(--white);
}

.overlay-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.95);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.xop-box:hover .overlay-button {
    opacity: 1;
}

.overlay-button a {
    display: block;
    width: 60%;
}

.overlay-button a img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* ============ KPI SECTION ============ */
#kpi {
    background: var(--gradient-1);
    padding: 120px 5%;
    position: relative;
}

#kpi::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    transform: skewY(-3deg);
}

.kpi-section ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.kpi-section ul li {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.kpi-section ul li:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.kpi-section ul li i {
    font-size: 60px;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.kpi-section ul li p {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
}

/* ============ TIMELINE SECTION ============ */
#story {
    padding: 120px 5%;
    background: var(--bg-light);
}

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

.timeline ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline ul li {
    list-style: none;
}

.timeline-content {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.timeline-content .date-time {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-1);
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    flex: 1;
}

/* ============ TESTIMONIALS SECTION ============ */
#testimonials {
    padding: 120px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.testimonials-section {
    max-width: 100%;
}

.testimonials-section .header2 {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 5%;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

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

/* Duplicate testimonials for seamless loop */
.testimonials-track::after {
    content: '';
    display: flex;
    gap: 30px;
}

.testimonial-card {
    min-width: 400px;
    max-width: 400px;
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    align-items: center;
}

.testimonial-rating svg,
.testimonial-rating i {
    color: #fbbf24;
    fill: #fbbf24;
    width: 20px;
    height: 20px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
        padding: 25px;
    }

    .testimonials-track {
        gap: 20px;
        animation: scroll 30s linear infinite;
    }
}

/* ============ PRICING SECTION ============ */
.pricing {
    padding: 120px 5%;
    background: var(--bg-light);
}

.pricing__title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 80px;
    position: relative;
}

.pricing__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card_premium {
    border: 3px solid var(--primary-color);
    position: relative;
}

.pricing-card_premium::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 1;
}

.pricing-card__top {
    background: var(--gradient-1);
    padding: 40px 30px;
    color: var(--white);
    text-align: center;
}

.pricing-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card__price {
    font-size: 48px;
    font-weight: 800;
}

.pricing-card__price span {
    font-size: 16px;
    font-weight: 400;
}

.pricing-card__body {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card__pluses {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-card__plus {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-card__plus i {
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__button a {
    display: block;
    text-align: center;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card__button a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pricing-card__button a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-card__button a:active {
    transform: scale(0.98);
}

.pricing-card__button a:active::before {
    width: 300px;
    height: 300px;
}

/* ============ FOOTER ============ */
footer {
    background: var(--gradient-1);
    color: var(--white);
    padding: 80px 5% 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    transform: skewY(-3deg);
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.footer-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.email-footer {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.email-footer:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.socilas {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
}

.socilas li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.socilas li a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

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

.bottom-footer p,
.bottom-footer a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ============ POLICY PAGES (PRIVACY & TERMS) ============ */
.privacy-page,
.terms-page {
    background: var(--bg-light);
}

.privacy-page main,
.terms-page main {
    padding-top: 80px;
}

/* Fix header styling on policy pages */
.privacy-page header,
.terms-page header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    padding: 15px 5%;
}

.privacy-page header .logo,
.terms-page header .logo {
    width: 140px;
}

.privacy-page header .menu a,
.terms-page header .menu a {
    color: var(--text-dark);
}

.privacy-page header .menu a i,
.terms-page header .menu a i {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.privacy-page header .menu-btn,
.terms-page header .menu-btn {
    color: var(--text-dark);
}

/* Policy Hero Section */
.privacy-hero,
.terms-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before,
.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-hero-content,
.terms-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.privacy-hero h1,
.terms-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.privacy-hero p,
.terms-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-updated,
.terms-updated {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

/* Policy Content Section */
.privacy-section,
.terms-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.privacy-wrapper,
.terms-wrapper {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
}

.privacy-grid,
.terms-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.privacy-card,
.terms-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-card::before,
.terms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.privacy-card:hover,
.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.15);
}

.privacy-card:hover::before,
.terms-card:hover::before {
    transform: scaleY(1);
}

.privacy-card h3,
.terms-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-card h3::before,
.terms-card h3::before {
    content: '✦';
    color: var(--primary-color);
    font-size: 18px;
}

.privacy-card p,
.terms-card p,
.privacy-list,
.terms-list {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.privacy-list,
.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.privacy-list li,
.terms-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.privacy-list li::before,
.terms-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.privacy-card a,
.terms-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.privacy-card a:hover,
.terms-card a:hover {
    border-bottom-color: var(--primary-color);
}

/* Privacy Contact Section */
.privacy-contact,
.terms-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 0;
}

.privacy-contact footer {
    padding: 80px 30px 40px;
    text-align: center;
}

.privacy-contact .footer-content {
    max-width: 600px;
    margin: 0 auto 40px;
}

.privacy-contact .footer-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.privacy-contact .footer-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.privacy-contact .email-footer {
    display: inline-block;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.privacy-contact .email-footer:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.privacy-contact .bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.privacy-contact .bottom-footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

.privacy-contact .bottom-footer a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.privacy-contact .bottom-footer a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-page main {
        padding-top: 60px;
    }

    .privacy-hero {
        padding: 80px 0 60px;
    }

    .privacy-hero h1 {
        font-size: 36px;
    }

    .privacy-hero p {
        font-size: 16px;
    }

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

    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-card {
        padding: 25px;
    }

    .privacy-card h3 {
        font-size: 20px;
    }

    .privacy-updated {
        font-size: 14px;
    }

    .privacy-contact footer {
        padding: 60px 20px 30px;
    }

    .privacy-contact .footer-content h1 {
        font-size: 32px;
    }

    .privacy-contact .email-footer {
        font-size: 16px;
        padding: 14px 30px;
    }

    .privacy-contact .bottom-footer {
        flex-direction: column;
        gap: 15px;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Apply animations */
.games-grid li {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.games-grid li:nth-child(1) { animation-delay: 0.1s; }
.games-grid li:nth-child(2) { animation-delay: 0.2s; }
.games-grid li:nth-child(3) { animation-delay: 0.3s; }
.games-grid li:nth-child(4) { animation-delay: 0.4s; }
.games-grid li:nth-child(5) { animation-delay: 0.5s; }
.games-grid li:nth-child(6) { animation-delay: 0.6s; }

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
    .banner-header-info img { width: 220px; }
    .banner-header-info p { font-size: 18px; }

    .hit-img img { width: 300px; height: 300px; }

    .games-header h1,
    .header2 h1,
    .pricing__title,
    .footer-content h1 {
        font-size: 40px;
    }

    .timeline::before { display: none; }

    .timeline ul li,
    .timeline ul li:nth-child(odd),
    .timeline ul li:nth-child(even) {
        width: 100%;
        float: none;
        left: 0;
        margin-left: 0;
        text-align: left;
    }

    .timeline ul li:nth-child(odd) .timeline-content::after,
    .timeline ul li:nth-child(even) .timeline-content::after {
        display: none;
    }
}

@media (max-width: 768px) {
    header .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 30px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    header .menu.active {
        right: 0;
    }

    header .menu a {
        color: var(--text-dark);
        font-size: 16px;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 12px 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    header .menu a:hover {
        background: rgba(99, 102, 241, 0.05);
    }

    header .menu a i {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary-color);
    }

    header .menu-btn {
        display: block;
    }

    header .menu .fa-times {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 24px;
        color: var(--text-dark);
    }

    .banner-header-info {
        padding: 120px 5% 150px;
    }

    .banner-header-info img { width: 180px; }

    .banner-header-info p {
        font-size: 16px;
        width: 100%;
    }

    .games-header h1,
    .header2 h1,
    .pricing__title,
    .footer-content h1 {
        font-size: 32px;
    }

    .hit-img-btn {
        flex-direction: column;
        gap: 40px;
    }

    .hit-img img {
        width: 250px;
        height: 250px;
    }

    .about-game h1 {
        font-size: 32px;
    }

    .store-btn {
        flex-direction: column;
        width: 100%;
    }

    .store-btn a img {
        width: 100%;
        max-width: 200px;
    }

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

    .kpi-section ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .email-footer {
        width: 100%;
        max-width: 300px;
    }

    .bottom-footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .games-header h1,
    .header2 h1,
    .pricing__title,
    .footer-content h1 {
        font-size: 28px;
    }

    .banner-header-btn ul {
        flex-direction: column;
        width: 100%;
    }

    .banner-header-btn ul li {
        width: 100%;
    }

    .banner-header-btn ul li a {
        display: block;
        width: 100%;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}
