* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Main Colors */
    --primary: #4f8cff;
    --primary-dark: #3a7bd5;
    --primary-light: #7eb3ff;
    
    /* Yellow Accent */
    --yellow: #fcd34d;
    --yellow-dark: #f59e0b;
    --yellow-light: #fde68a;
    
    /* Purple Accent */
    --purple: #a78bfa;
    --purple-dark: #7c3aed;
    --purple-light: #c4b5fd;
    
    /* Pink Accent */
    --pink: #f472b6;
    --pink-dark: #ec4899;
    
    /* Orange Accent */
    --orange: #fb923c;
    --orange-dark: #f97316;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #4f8cff, #a78bfa);
    --gradient-warm: linear-gradient(135deg, #fcd34d, #fb923c);
    --gradient-cool: linear-gradient(135deg, #4f8cff, #7eb3ff);
    --gradient-purple: linear-gradient(135deg, #a78bfa, #7c3aed);
    --gradient-pink: linear-gradient(135deg, #f472b6, #ec4899);
    --gradient-hero: linear-gradient(135deg, #4f8cff 0%, #a78bfa 30%, #fcd34d 70%, #f472b6 100%);
    --gradient-text: linear-gradient(135deg, #4f8cff, #a78bfa, #fcd34d, #f472b6);
    
    /* Backgrounds */
    --bg-dark: #0a0e1a;
    --bg-card: #111b3a;
    --bg-card-hover: #1a2a5c;
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Text */
    --text-white: #f0f6ff;
    --text-light: #c5d6ff;
    --text-muted: #8aa3d9;
    
    /* Borders & Shadows */
    --border-color: rgba(79, 140, 255, 0.2);
    --border-yellow: rgba(252, 211, 77, 0.3);
    --shadow-glow: rgba(79, 140, 255, 0.3);
    --shadow-yellow: rgba(252, 211, 77, 0.25);
    
    --radius: 20px;
    --radius-sm: 14px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*==============================
        ROOT VARIABLES - THEME COLORS
==============================*/

:root {
    /* Blue Theme */
    --blue-primary: #4f8cff;
    --blue-dark: #3a7bd5;
    --blue-light: #7eb3ff;
    --blue-glow: rgba(79, 140, 255, 0.25);
    
    /* Yellow Accent */
    --yellow: #fcd34d;
    --yellow-dark: #f59e0b;
    --yellow-light: #fde68a;
    --yellow-glow: rgba(252, 211, 77, 0.2);
    
    /* Purple Accent */
    --purple: #a78bfa;
    --purple-dark: #7c3aed;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #4f8cff, #3a7bd5);
    --gradient-purple: linear-gradient(135deg, #a78bfa, #7c3aed);
    --gradient-warm: linear-gradient(135deg, #fcd34d, #f59e0b);
    --gradient-text: linear-gradient(135deg, #4f8cff, #a78bfa, #fcd34d, #4f8cff);
    --gradient-hero: linear-gradient(135deg, #07101f 0%, #141d47 40%, #2C3270 70%, #141d47 100%);
    
    /* Shadows */
    --shadow-blue: 0 15px 40px rgba(79, 140, 255, 0.25);
    --shadow-yellow: 0 15px 40px rgba(252, 211, 77, 0.2);
    --shadow-card: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/*==============================
        GLOBAL ANIMATIONS
==============================*/

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}



html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-main);
    border-radius: 10px;
}

/* ===== ANIMATIONS ===== */
@keyframes pulseGlow {
    0% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
    100% { opacity: 0.2; transform: scale(1.05); }
}
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 25px) scale(1.1); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(79, 140, 255, 0.2); }
    50% { box-shadow: 0 0 40px rgba(252, 211, 77, 0.3); }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background: radial-gradient(ellipse at 20% 30%, #0f1a3a, #060b1a 85%);
    isolation: isolate;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.circle-1 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    top: -150px;
    left: -120px;
    opacity: 0.15;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}
.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    bottom: -160px;
    right: -140px;
    opacity: 0.2;
    animation: pulseGlow 10s ease-in-out infinite alternate-reverse;
}
.circle-3 {
    width: 200px;
    height: 200px;
    background: var(--yellow);
    top: 45%;
    left: 55%;
    opacity: 0.1;
    filter: blur(130px);
    animation: floatOrb 14s ease-in-out infinite;
}
.circle-4 {
    width: 250px;
    height: 250px;
    background: var(--pink);
    top: 10%;
    right: 10%;
    opacity: 0.08;
    filter: blur(140px);
    animation: pulseGlow 12s ease-in-out infinite alternate;
}

.container {
    max-width: 1280px;
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    backdrop-filter: blur(2px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-warm);
    color: #0b1a3a;
    padding: 6px 20px 6px 16px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 18px var(--shadow-yellow);
    animation: glowPulse 3s ease-in-out infinite;
}
.hero-badge i {
    font-size: 0.95rem;
    color: #0b1a3a;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    text-shadow: 0 8px 30px rgba(79, 140, 255, 0.2);
}

.hero-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 92%;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.hero-content p:last-of-type {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.92rem;
    opacity: 0.8;
    border-left: 3px solid var(--yellow);
    padding-left: 18px;
}
.hero-content p strong {
    color: var(--yellow);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    height: 52px;
    background: var(--gradient-main);
    color: #0f0f0f;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition);
    box-shadow: 0 10px 28px -6px rgba(79, 140, 255, 0.35);
    padding: 0 24px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.hero-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-warm);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}
.hero-btn:hover::before {
    opacity: 1;
}
.hero-btn i {
    font-size: 1rem;
    color: #0a0a0a;
}
.hero-btn:hover {
    transform: translateY(-5px) scale(1.02);
    color: #0b1a3a;
    border-color: var(--yellow);
    box-shadow: 0 18px 36px -6px var(--yellow);
}
.hero-btn:hover i {
    color: var(--yellow);
}
.hero-btn:active {
    transform: scale(0.96);
}
.hero-btn.btn-secondary {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}
.hero-btn.btn-secondary:hover {
    background: var(--gradient-warm);
    color: #0b1a3a;
}
.hero-btn.btn-secondary:hover i {
    color: #0b1a3a;
}

/* ===== DASHBOARD CARD ===== */
.hero-right {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    width: 320px;
    background: linear-gradient(150deg, #1f2a5c, #111b3a);
    border-radius: 40px;
    padding: 32px 26px 34px;
    text-align: center;
    border: 1px solid rgba(252, 211, 77, 0.2);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(252, 211, 77, 0.08), 0 0 50px rgba(252, 211, 77, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: transform var(--transition), box-shadow var(--transition);
}
.dashboard-card:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.75), 0 0 0 2px var(--yellow), 0 0 60px rgba(252, 211, 77, 0.2);
}

.dashboard-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: var(--yellow);
    filter: blur(110px);
    top: -120px;
    right: -100px;
    opacity: 0.12;
    z-index: 0;
}
.dashboard-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--purple);
    filter: blur(80px);
    bottom: -60px;
    left: -50px;
    opacity: 0.15;
    z-index: 0;
}

.top-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    color: var(--text-light);
}
.icon-box:hover {
    background: rgba(252, 211, 77, 0.15);
    border-color: var(--yellow);
    transform: translateY(-3px) scale(1.05);
    color: var(--yellow);
}
.icon-box:nth-child(2) {
    color: var(--yellow);
}
.icon-box:nth-child(3) {
    color: var(--purple);
}

.trophy {
    width: 110px;
    height: 110px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    box-shadow: 0 0 0 5px rgba(252, 211, 77, 0.2), 0 18px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    color: #0b1a3a;
    transition: var(--transition);
}
.trophy:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 0 8px rgba(252, 211, 77, 0.25), 0 25px 55px rgba(252, 211, 77, 0.3);
}

.dashboard-card h2 {
    color: #fff;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}
.dashboard-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 18px;
    opacity: 0.75;
    position: relative;
    z-index: 2;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(252, 211, 77, 0.25);
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.chance {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.progress {
    width: 100%;
    height: 10px;
    border-radius: 30px;
    background: #0f173f;
    overflow: hidden;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}
.progress span {
    display: block;
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, var(--yellow), var(--orange), var(--yellow));
    background-size: 200% auto;
    border-radius: 30px;
    box-shadow: 0 0 20px var(--yellow);
    position: relative;
    transition: width 0.6s ease;
    animation: shimmer 3s linear infinite;
}

.percent {
    margin-top: 12px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

/* ===== FLOATING CARDS ===== */
.floating-card {
    position: absolute;
    background: rgba(20, 35, 80, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f0f6ff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 16px 35px -10px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    animation: float 5s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
}
.floating-card i {
    font-size: 1rem;
}
.card-one {
    top: 20px;
    right: -15px;
    animation-delay: 0.2s;
    background: rgba(252, 211, 77, 0.15);
    border-color: var(--yellow);
}
.card-one i {
    color: var(--yellow);
}
.card-two {
    left: -25px;
    bottom: 100px;
    animation-delay: 1.4s;
    background: rgba(167, 139, 250, 0.15);
    border-color: var(--purple);
}
.card-two i {
    color: var(--purple);
}
.card-three {
    right: 5px;
    bottom: 10px;
    animation-delay: 2.8s;
    background: rgba(251, 146, 60, 0.15);
    border-color: var(--orange);
}
.card-three i {
    color: var(--orange);
}

/* ===== TABLE CONTAINER ===== */
.table-container {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(150deg, #1f2a5c, #111b3a);
    border-radius: var(--radius);
    padding: 32px 30px;
    border: 1px solid rgba(252, 211, 77, 0.15);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.65), 0 0 50px rgba(252, 211, 77, 0.05);
    margin: 40px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.table-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(252, 211, 77, 0.03), transparent 60%);
    pointer-events: none;
}

.gift-code-section {
    background: linear-gradient(135deg, #1f2a5c, #2a3a7a);
    border-radius: 16px;
    padding: 24px 30px;
    margin-bottom: 34px;
    border: 1px solid rgba(252, 211, 77, 0.2);
    box-shadow: 0 8px 25px rgba(252, 211, 77, 0.15);
    text-align: left;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.gift-code-section::before {
    content: "🎁";
    position: absolute;
    right: -5px;
    top: -15px;
    font-size: 80px;
    opacity: 0.06;
    transform: rotate(15deg);
}
.gift-code-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.05), transparent);
    border-radius: 50%;
}

.gift-code-section h2 {
    color: #eff1f5;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
}
.gift-code-section h2 i {
    color: var(--yellow);
}
.gift-code-section h2 span {
    background: rgba(252, 211, 77, 0.15);
    padding: 3px 12px;
    border-radius: 16px;
    font-size: .65rem;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: .5px;
}

.gift-code-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gift-code-section .code {
    display: inline-block;
    background: rgba(0, 0, 0, 0.35);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 2.5px;
    border: 1px solid rgba(252, 211, 77, 0.15);
    word-break: break-all;
    backdrop-filter: blur(4px);
    flex: 1;
    min-width: 180px;
    transition: all var(--transition);
}
.gift-code-section .code:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--yellow);
    transform: scale(1.01);
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.15);
}

.gift-code-section .code-copy-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.gift-code-section .code-copy-btn:hover {
    background: rgba(252, 211, 77, 0.15);
    border-color: var(--yellow);
    transform: translateY(-2px);
    color: var(--yellow);
}

.gift-code-section .update-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    background: rgba(252, 211, 77, 0.12);
    color: var(--yellow);
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(252, 211, 77, 0.08);
}

/* ===== SPECS TABLE ===== */
.specs-heading {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.specs-heading i {
    color: var(--yellow);
}
.specs-heading .badge {
    background: rgba(252, 211, 77, 0.12);
    color: var(--yellow);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 16px;
    letter-spacing: 0.5px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition);
}
.specs-table tr:last-child {
    border-bottom: none;
}
.specs-table tr:hover {
    background: rgba(252, 211, 77, 0.06);
}
.specs-table td {
    padding: 14px 10px;
    font-size: 0.92rem;
    line-height: 1.5;
    text-align: left;
}
.specs-table td:first-child {
    color: var(--yellow);
    font-weight: 600;
    width: 32%;
    letter-spacing: 0.2px;
    position: relative;
}
.specs-table td:first-child::after {
    content: ":";
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.15);
}
.specs-table td:last-child {
    color: var(--text-light);
    font-weight: 400;
    width: 68%;
    padding-left: 20px;
}
.specs-table .highlight {
    color: var(--yellow);
    font-weight: 600;
    background: rgba(252, 211, 77, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* ===== TIRANGA SECTION ===== */
.tiranga-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0B1028 0%, #1A2254 40%, #2C3270 70%, #1A2254 100%);
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    width: 100%;
    margin: auto;
    border-radius: 12px;
}
.tiranga-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: var(--yellow);
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.08;
    top: -100px;
    left: -100px;
}
.tiranga-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: var(--purple);
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.15;
    right: -60px;
    bottom: -60px;
}

.tiranga-container {
    max-width: 1200px;
    width: 92%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.center-img{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:35px 0;
}

.center-img img{
    display:block;
    width:100%;
    max-width:250px;
    height:auto;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    border:2px solid rgba(101,162,255,.2);
    transition:.3s ease;
}

.center-img img:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(101,162,255,.25);
}

@media(max-width:768px){

.center-img{
    margin:25px 0;
}

.center-img img{
    max-width:300px;
    width:100%;
}

}

.section-heading {
    text-align: center;
    margin-bottom: 32px;
}
.section-heading h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 0;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}
.section-heading h2 i {
    color: var(--yellow);
    -webkit-text-fill-color: var(--yellow);
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 211, 77, 0.15);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 38px;
}
.about-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.about-content strong {
    color: var(--yellow);
}

.features-box h3 {
    color: #fff;
    text-align: center;
    font-size: 28px;
    margin-bottom: 28px;
}
.features-box h3 i {
    color: var(--yellow);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(79, 140, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 22px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
    box-shadow: 0 12px 30px rgba(252, 211, 77, 0.12);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card .icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}
.feature-card strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
}
.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 16px 20px;
}
.custom-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    position: relative;
    background: linear-gradient(135deg, #07101f 0%, #141d47 40%, #2C3270 70%, #141d47 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}
.custom-container::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: var(--yellow);
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.06;
    top: -100px;
    left: -100px;
}
.custom-container::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: var(--purple);
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.15;
    right: -80px;
    bottom: -80px;
}

.content-box {
    position: relative;
    z-index: 2;
    background: transparent;
    border: 1px solid rgba(79, 140, 255, 0.15);
    border-radius: 24px;
    padding: 44px 48px;
    backdrop-filter: blur(14px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.content-box h2 {
    position: relative;
    color: #fff;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 14px;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}
.content-box h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    border-radius: 20px;
    background: var(--gradient-warm);
}

.content-box h3 {
    color: #fff;
    font-size: 22px;
    margin: 38px 0 18px;
}
.content-box h3 i {
    color: var(--yellow);
}

.content-box p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}
.content-box strong {
    color: var(--yellow);
}

.content-btn-box{
    margin:28px 0;
    text-align:center;
}

.content-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:160px;
    height:52px;
    padding:0 28px;
    border-radius:50px;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    color:#0b1a3a;
    background:var(--gradient-warm);
    border:2px solid var(--yellow);
    transition:var(--transition);
    box-shadow:0 8px 25px rgba(252,211,77,.25);
    gap:8px;
}


.content-btn i {
    color: #0b1a3a;
}
.content-btn:hover {
    background: var(--gradient-main);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(79, 140, 255, 0.35);
}
.content-btn:hover i {
    color: #fff;
}

.content-list {
    margin: 28px 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}
.content-list li {
    position: relative;
    counter-increment: step;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(79, 140, 255, 0.15);
    border-radius: 14px;
    padding: 18px 20px 18px 70px;
    margin-bottom: 16px;
    color: var(--text-white);
    font-size: 15px;
    line-height: 1.8;
    transition: var(--transition);
    overflow: hidden;
}
.content-list li::before {
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm);
    color: #0b1a3a;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(252, 211, 77, 0.3);
}
.content-list li:hover {
    transform: translateX(6px);
    border-color: var(--yellow);
    background: rgba(252, 211, 77, 0.06);
    box-shadow: 0 10px 25px rgba(252, 211, 77, 0.1);
}

/* ===== GAME CARD ===== */
.game-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 38px;
    padding: 24px 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(79, 140, 255, 0.16);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.game-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--yellow);
    filter: blur(100px);
    opacity: 0.06;
    top: -100px;
    right: -80px;
}
.game-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--purple);
    filter: blur(90px);
    opacity: 0.06;
    bottom: -80px;
    left: -60px;
}
.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 25px rgba(252, 211, 77, 0.1);
}
.game-card.reverse {
    flex-direction: row-reverse;
}

.game-img {
    width: 280px;
    flex-shrink: 0;
}
.game-img img {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 2px solid rgba(252, 211, 77, 0.15);
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.game-card:hover .game-img img {
    transform: scale(1.03) rotate(-1deg);
    border-color: var(--yellow);
}

.game-content {
    flex: 1;
}
.game-content h3 {
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}
.game-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    border-radius: 30px;
    background: var(--gradient-warm);
}
.game-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}
.game-content .tag {
    display: inline-block;
    background: rgba(252, 211, 77, 0.12);
    color: var(--yellow);
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
}

/* ===== TIPS LIST ===== */
.tips-list {
    margin-top: 38px;
    padding: 0;
    list-style: none;
    counter-reset: tips;
}
.tips-list li {
    position: relative;
    counter-increment: tips;
    margin-bottom: 24px;
    padding: 24px 24px 24px 80px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(79, 140, 255, 0.12);
    transition: var(--transition);
    overflow: hidden;
}
.tips-list li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-warm);
    border-radius: 0 4px 4px 0;
}
.tips-list li::before {
    content: counter(tips);
    position: absolute;
    left: 22px;
    top: 24px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-warm);
    color: #0b1a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(252, 211, 77, 0.3);
}
.tips-list li:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    background: rgba(252, 211, 77, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(252, 211, 77, 0.08);
}
.tips-list li strong {
    display: block;
    font-size: 17px;
    color: var(--yellow);
    margin-bottom: 10px;
    line-height: 1.4;
}
.tips-list li {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== FAQ ===== */
.faq {
    margin-top: 38px;
}
.faq-item {
    background: linear-gradient(135deg, #1b2750, #263568);
    border: 1px solid rgba(79, 140, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-warm);
    transform: scaleY(0);
    transition: var(--transition);
}
.faq-item:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(252, 211, 77, 0.08);
}
.faq-item.active {
    border-color: var(--yellow);
    box-shadow: 0 16px 40px rgba(252, 211, 77, 0.08);
}
.faq-item.active::before,
.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item h3 {
    position: relative;
    margin: 0;
    padding: 20px 65px 20px 24px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1.5;
    transition: var(--transition);
}
.faq-item h3:hover {
    color: var(--yellow);
}
.faq-item h3::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-warm);
    color: #0b1a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(252, 211, 77, 0.3);
}
.faq-item.active h3::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
    background: var(--gradient-purple);
    color: #fff;
}

.faq-content {
    display: none;
    padding: 0 24px 22px;
    animation: fadeDown 0.35s ease;
}
.faq-item.active .faq-content {
    display: block;
}
.faq-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== PAGE SECTION ===== */
.page-section {
    padding: 70px 20px;
}
.page-wrapper {
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.page-card {
    position: relative;
    overflow: hidden;
    padding: 48px 50px;
    border-radius: 24px;
    background: linear-gradient(135deg, #10193b 0%, #1b2857 40%, #2C3270 70%, #1b2857 100%);
    border: 1px solid rgba(79, 140, 255, 0.15);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.page-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--yellow);
    filter: blur(130px);
    opacity: 0.06;
    top: -120px;
    right: -120px;
}
.page-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--purple);
    filter: blur(110px);
    opacity: 0.08;
    bottom: -100px;
    left: -100px;
}

.page-card h1 {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 0 40px;
    text-align: center;
    z-index: 2;
}
.page-card h1 span {
    position: relative;
    display: inline-block;
    padding: 18px 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.3px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(252, 211, 77, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}
.page-card h1 span::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--yellow), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    z-index: -1;
}
.page-card h1 span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, var(--yellow), var(--purple), var(--yellow), transparent);
    box-shadow: 0 0 12px rgba(252, 211, 77, 0.3);
}

.page-card h2 {
    position: relative;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 18px;
    padding-left: 18px;
    z-index: 2;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}
.page-card h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 5px;
    height: 30px;
    border-radius: 20px;
    background: var(--gradient-warm);
}
.page-card h2::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: -8px;
    width: 70px;
    height: 2px;
    border-radius: 30px;
    background: var(--yellow);
}

.page-card p {
    position: relative;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    z-index: 2;
}
.page-card a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.page-card a:hover {
    color: var(--purple);
}

/* ===== CONTACT BOX ===== */
.contact-box {
    margin-top: 38px;
    padding: 28px 30px;
    background: linear-gradient(135deg, #182347, #2C3270);
    border: 1px solid rgba(252, 211, 77, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}
.contact-box h2 {
    margin: 0 0 24px;
    padding: 0;
    border: none;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}
.contact-box h2::before,
.contact-box h2::after {
    display: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(79, 140, 255, 0.12);
    border-radius: 14px;
    transition: var(--transition);
}
.contact-item:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
    box-shadow: 0 12px 28px rgba(252, 211, 77, 0.08);
}
.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0b1a3a;
    background: var(--gradient-warm);
    box-shadow: 0 8px 20px rgba(252, 211, 77, 0.25);
    flex-shrink: 0;
}
.contact-info strong {
    color: var(--yellow);
    font-size: 17px;
    margin: 0 0 6px;
    font-weight: 700;
    display: block;
}
.contact-info a {
    color: var(--text-light);
    font-size: 16px;
    text-decoration: none;
    word-break: break-word;
    transition: var(--transition);
}
.contact-info a:hover {
    color: var(--yellow);
}

/* ===== POLICY LIST ===== */
.policy-list {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: policy;
    display: grid;
    gap: 22px;
}
.policy-list li {
    position: relative;
    counter-increment: policy;
    padding: 28px 28px 28px 85px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(79, 140, 255, 0.15);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: var(--transition);
}
.policy-list li::before {
    content: counter(policy);
    position: absolute;
    left: 22px;
    top: 26px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-warm);
    color: #0b1a3a;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(252, 211, 77, 0.25), inset 0 1px 4px rgba(255, 255, 255, 0.15);
}
.policy-list li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.policy-list li:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 28px rgba(252, 211, 77, 0.06);
}
.policy-list li:hover::after {
    transform: scaleX(1);
}
.policy-list li strong {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}
.policy-list li p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.page-list {
    list-style: none;
    margin: 28px 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.page-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px 18px 56px;
    background: linear-gradient(135deg, #182451, #273977);
    border: 1px solid rgba(79, 140, 255, 0.15);
    border-radius: 14px;
    color: var(--text-white);
    font-size: 15px;
    line-height: 1.8;
    transition: var(--transition);
    overflow: hidden;
}
.page-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-warm);
    color: #0b1a3a;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(252, 211, 77, 0.25);
}
.page-list li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-warm);
    transform: scaleY(0);
    transition: var(--transition);
    transform-origin: top;
}
.page-list li:hover {
    transform: translateX(6px);
    border-color: var(--yellow);
    box-shadow: 0 12px 28px rgba(252, 211, 77, 0.08);
    background: linear-gradient(135deg, #22316a, #31468f);
}
.page-list li:hover::after {
    transform: scaleY(1);
}


/*==============================
        APK HERO
==============================*/

.apk-hero {
    padding: 100px 20px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.apk-hero::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--blue-primary);
    filter: blur(180px);
    opacity: 0.12;
    top: -120px;
    left: -120px;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

.apk-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--yellow);
    filter: blur(180px);
    opacity: 0.08;
    bottom: -120px;
    right: -120px;
    animation: pulseGlow 10s ease-in-out infinite alternate-reverse;
}

.apk-hero .hero-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--purple);
    filter: blur(150px);
    opacity: 0.08;
    top: 30%;
    right: 20%;
    animation: pulseGlow 12s ease-in-out infinite alternate;
}

.apk-wrapper {
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.apk-content {
    text-align: center;
    padding: 60px 65px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(79, 140, 255, 0.15);
    border-radius: 32px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.8s ease;
}

.apk-content::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.apk-content .hero-icon {
    font-size: 72px;
    margin-bottom: 16px;
    display: block;
    position: relative;
    z-index: 1;
    animation: floatSlow 4s ease-in-out infinite;
}

.apk-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 20px;
    padding: 0;
    border: none;
    background: var(--gradient-text);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.apk-content h1 .highlight {
    -webkit-text-fill-color: var(--yellow);
    background: none;
}

.apk-content h1::before,
.apk-content h1::after {
    display: none;
}

.apk-content .sub-heading {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.9;
    margin: 0 auto 12px;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.apk-content .sub-heading strong {
    color: var(--yellow);
    font-weight: 600;
}

.apk-content .sub-heading i {
    color: var(--blue-primary);
    margin: 0 4px;
}

.apk-content .tagline {
    display: inline-block;
    background: rgba(252, 211, 77, 0.1);
    border: 1px solid rgba(252, 211, 77, 0.15);
    color: var(--yellow);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.apk-content .tagline i {
    margin-right: 8px;
}

.apk-btn-box {
    margin: 32px 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.apk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 200px;
    height: 60px;
    text-decoration: none;
    border-radius: 50px;
    background: #f59e0b;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
}

.apk-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.6s;
}

.apk-btn:hover::before {
    left: 100%;
}

.apk-btn i {
    font-size: 20px;
    transition: 0.3s;
}

.apk-btn:hover {
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    color: #0b1a3a;
    border-color: var(--yellow);
    box-shadow: var(--shadow-yellow);
}

.apk-btn:hover i {
    transform: translateX(4px);
}

.apk-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.apk-btn.secondary:hover {
    background: rgba(79, 140, 255, 0.12);
    border-color: var(--blue-primary);
    color: var(--blue-primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
}

.apk-btn .btn-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--yellow);
    color: #0b1a3a;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*==============================
        RESPONSIVE - HERO
==============================*/

@media (max-width: 991px) {
    .apk-hero {
        padding: 80px 15px;
    }
    
    .apk-content {
        padding: 45px 35px;
    }
    
    .apk-content h1 {
        font-size: 38px;
    }
    
    .apk-content .sub-heading {
        font-size: 17px;
    }
    
    .apk-btn {
        min-width: 180px;
        height: 54px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .apk-hero {
        padding: 60px 12px;
    }
    
    .apk-content {
        padding: 30px 20px;
        border-radius: 24px;
    }
    
    .apk-content .hero-icon {
        font-size: 56px;
    }
    
    .apk-content h1 {
        font-size: 30px;
    }
    
    .apk-content .sub-heading {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-content .tagline {
        font-size: 12px;
        padding: 5px 16px;
    }
    
    .apk-btn-box {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .apk-btn {
        width: 100%;
        max-width: 280px;
        height: 50px;
        font-size: 15px;
        min-width: unset;
    }
    
    .apk-btn i {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .apk-content h1 {
        font-size: 24px;
    }
    
    .apk-content .sub-heading {
        font-size: 14px;
    }
    
    .apk-btn {
        height: 44px;
        font-size: 14px;
        max-width: 100%;
    }
}

/*==================================
        SPECIFICATION TABLE
==================================*/

.spec-section {
    padding: 30px 20px 50px;
}

.spec-container {
    max-width: 1200px;
    margin: auto;
}

.spec-box {
    background: linear-gradient(145deg, #0f1835, #1a2860);
    border: 1px solid rgba(79, 140, 255, 0.12);
    border-radius: 28px;
    padding: 50px 55px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.spec-box::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.05), transparent);
    border-radius: 50%;
}

.spec-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
    padding: 0;
    border: none;
    text-align: center;
    background: var(--gradient-text);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    letter-spacing: -0.02em;
}

.spec-box .spec-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.spec-box h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--yellow));
    display: block;
    margin: 14px auto 0;
    border-radius: 20px;
}

.spec-table {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    transition: all 0.3s ease;
}

.spec-table tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}

.spec-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.01);
}

.spec-table tr:hover {
    background: rgba(79, 140, 255, 0.08);
    transform: scale(1.002);
}

.spec-table th,
.spec-table td {
    padding: 18px 24px;
    border: 1px solid rgba(79, 140, 255, 0.08);
    text-align: left;
    font-size: 16px;
}

.spec-table th {
    width: 32%;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.spec-table th i {
    margin-right: 10px;
    color: var(--blue-primary);
}

.spec-table td {
    color: #eef3ff;
}

.spec-table td .badge-blue {
    background: rgba(79, 140, 255, 0.12);
    color: var(--blue-primary);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.spec-table td .badge-yellow {
    background: rgba(252, 211, 77, 0.12);
    color: var(--yellow);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.spec-table td .download-count {
    color: var(--blue-primary);
    font-weight: 700;
}

/*==================================
        RESPONSIVE - SPEC
==================================*/

@media (max-width: 991px) {
    .spec-box {
        padding: 35px 30px;
    }
    
    .spec-box h2 {
        font-size: 30px;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 14px 18px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .spec-section {
        padding: 20px 12px 40px;
    }
    
    .spec-box {
        padding: 24px 18px;
        border-radius: 20px;
    }
    
    .spec-box h2 {
        font-size: 26px;
    }
    
    .spec-box .spec-sub {
        font-size: 14px;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .spec-table th {
        width: 38%;
    }
}

@media (max-width: 420px) {
    .spec-box {
        padding: 18px 12px;
    }
    
    .spec-box h2 {
        font-size: 22px;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 10px 10px;
        font-size: 13px;
    }
    
    .spec-table th i {
        margin-right: 6px;
    }
}

/*==================================
        APK INFO SECTION
==================================*/

.apk-info-section {
    padding: 20px 20px 40px;
}

.apk-info-container {
    max-width: 1400px;
    margin: auto;
}

.apk-info-box {
    background: linear-gradient(145deg, #0f1835, #1a2860);
    border: 1px solid rgba(79, 140, 255, 0.12);
    border-radius: 28px;
    padding: 55px 60px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.apk-info-box::before {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.05), transparent);
    border-radius: 50%;
}

.apk-info-box .section-icon {
    font-size: 40px;
    color: var(--yellow);
    margin-bottom: 6px;
    display: block;
}

.apk-info-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 0;
    border: none;
    background: var(--gradient-text);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    letter-spacing: -0.02em;
}

.apk-info-box h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 80px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--blue-primary), var(--yellow));
}

.apk-info-box h2 i {
    -webkit-text-fill-color: var(--yellow);
    margin-right: 10px;
}

.apk-info-box .info-desc {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 900px;
}

.apk-info-box .info-desc strong {
    color: var(--yellow);
    font-weight: 600;
}

.apk-info-box h3 {
    position: relative;
    margin: 42px 0 18px;
    padding-left: 20px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
}

.apk-info-box h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 5px;
    height: 34px;
    border-radius: 20px;
    background: linear-gradient(var(--blue-primary), var(--yellow));
}

.apk-info-box h3 i {
    color: var(--yellow);
    margin-right: 10px;
}

.apk-info-box p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.apk-info-list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.apk-info-list li {
    position: relative;
    padding: 20px 24px 20px 72px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(79, 140, 255, 0.08);
    border-radius: 18px;
    color: #eef3ff;
    font-size: 16px;
    line-height: 1.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.apk-info-list li::before {
    content: "✓";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary), var(--purple));
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(79, 140, 255, 0.3);
    transition: 0.3s;
}

.apk-info-list li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(var(--blue-primary), var(--yellow));
    transform: scaleY(0);
    transition: 0.4s ease;
}

.apk-info-list li:hover {
    transform: translateX(8px);
    border-color: var(--blue-primary);
    background: rgba(79, 140, 255, 0.06);
    box-shadow: 0 12px 30px rgba(79, 140, 255, 0.1);
}

.apk-info-list li:hover::after {
    transform: scaleY(1);
}

.apk-info-list li:hover::before {
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
}

.apk-info-list li strong {
    color: var(--yellow);
    font-weight: 700;
}

/*==================================
        RESPONSIVE - INFO
==================================*/

@media (max-width: 991px) {
    .apk-info-box {
        padding: 40px 35px;
    }
    
    .apk-info-box h2 {
        font-size: 30px;
    }
    
    .apk-info-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .apk-info-section {
        padding: 15px 12px 30px;
    }
    
    .apk-info-box {
        padding: 28px 18px;
        border-radius: 20px;
    }
    
    .apk-info-box .section-icon {
        font-size: 32px;
    }
    
    .apk-info-box h2 {
        font-size: 24px;
    }
    
    .apk-info-box h2::after {
        width: 60px;
    }
    
    .apk-info-box .info-desc {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-info-box h3 {
        font-size: 20px;
        padding-left: 16px;
        margin: 32px 0 14px;
    }
    
    .apk-info-box h3::before {
        height: 28px;
    }
    
    .apk-info-box p {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-info-list {
        gap: 12px;
    }
    
    .apk-info-list li {
        padding: 16px 16px 16px 54px;
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-info-list li::before {
        left: 16px;
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .apk-info-box h2 {
        font-size: 20px;
    }
    
    .apk-info-box .info-desc {
        font-size: 14px;
    }
    
    .apk-info-box h3 {
        font-size: 18px;
    }
    
    .apk-info-list li {
        font-size: 14px;
        padding: 14px 14px 14px 48px;
    }
    
    .apk-info-list li::before {
        width: 24px;
        height: 24px;
        font-size: 11px;
        left: 14px;
    }
}

/*==================================
        APK DOWNLOAD SECTION
==================================*/

.apk-download-section {
    padding: 20px 20px 40px;
}

.apk-download-container {
    max-width: 1400px;
    margin: auto;
}

.apk-download-box {
    background: linear-gradient(145deg, #0f1835, #1a2860);
    border: 1px solid rgba(79, 140, 255, 0.12);
    border-radius: 28px;
    padding: 55px 60px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.apk-download-box::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.05), transparent);
    border-radius: 50%;
}

.apk-download-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 0;
    border: none;
    background: var(--gradient-text);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    letter-spacing: -0.02em;
}

.apk-download-box h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 80px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--blue-primary), var(--yellow));
}

.apk-download-box h2 i {
    -webkit-text-fill-color: var(--yellow);
    margin-right: 10px;
}

.apk-download-box .download-desc {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.apk-download-box .download-desc strong {
    color: var(--yellow);
}

.apk-download-box h3 {
    color: #fff;
    font-size: 24px;
    margin: 38px 0 16px;
    position: relative;
    padding-left: 20px;
    font-weight: 700;
}

.apk-download-box h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 5px;
    height: 32px;
    border-radius: 20px;
    background: linear-gradient(var(--blue-primary), var(--yellow));
}

.apk-download-box h3 i {
    color: var(--yellow);
    margin-right: 10px;
}

.apk-download-box p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.apk-download-list{
    margin:30px 0;
    padding:0;
    list-style:none;
    counter-reset:step;
}

.apk-download-list li{
    position:relative;
    counter-increment:step;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(79,140,255,.08);
    border-radius:18px;
    padding:20px 24px 20px 78px;
    margin-bottom:16px;
    color:#eef3ff;
    font-size:16px;
    line-height:1.9;
    transition:.35s;
}

.apk-download-list li::before{
    content:counter(step);
    position:absolute;
    left:22px;
    top:20px;                /* Center ki jagah top */
    transform:none;          /* translateY hata diya */
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue-primary),var(--purple));
    color:#fff;
    font-size:15px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(79,140,255,.25);
    transition:.3s;
}

.apk-download-list li:hover{
    transform:translateX(8px);
    border-color:var(--blue-primary);
    background:rgba(79,140,255,.06);
    box-shadow:0 12px 30px rgba(79,140,255,.1);
}

.apk-download-list li:hover::before{
    transform:scale(1.08);
    background:linear-gradient(135deg,var(--yellow),var(--yellow-dark));
}

.apk-download-list li strong{
    color:var(--yellow);
}

@media(max-width:768px){

.apk-download-list li{
    padding:18px 16px 18px 62px;
    font-size:15px;
}

.apk-download-list li::before{
    left:15px;
    top:18px;
    width:32px;
    height:32px;
    font-size:14px;
}

}

/*==================================
        RESPONSIVE - DOWNLOAD
==================================*/

@media (max-width: 991px) {
    .apk-download-box {
        padding: 40px 35px;
    }
    
    .apk-download-box h2 {
        font-size: 30px;
    }
    
    .apk-download-box h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .apk-download-section {
        padding: 15px 12px 30px;
    }
    
    .apk-download-box {
        padding: 28px 18px;
        border-radius: 20px;
    }
    
    .apk-download-box h2 {
        font-size: 24px;
    }
    
    .apk-download-box h2::after {
        width: 60px;
    }
    
    .apk-download-box .download-desc {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-download-box h3 {
        font-size: 20px;
        padding-left: 16px;
        margin: 30px 0 14px;
    }
    
    .apk-download-box h3::before {
        height: 28px;
    }
    
    .apk-download-box p {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-download-list li {
        padding: 16px 16px 16px 58px;
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-download-list li::before {
        width: 30px;
        height: 30px;
        left: 16px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .apk-download-box h2 {
        font-size: 20px;
    }
    
    .apk-download-box .download-desc {
        font-size: 14px;
    }
    
    .apk-download-box h3 {
        font-size: 18px;
    }
    
    .apk-download-list li {
        font-size: 14px;
        padding: 14px 14px 14px 50px;
    }
    
    .apk-download-list li::before {
        width: 26px;
        height: 26px;
        font-size: 12px;
        left: 14px;
    }
}

/*==================================
        APK INSTALL SECTION
==================================*/

.apk-install-section {
    padding: 20px 20px 40px;
}

.apk-install-container {
    max-width: 1400px;
    margin: auto;
}

.apk-install-box {
    background: linear-gradient(145deg, #0f1835, #1a2860);
    border: 1px solid rgba(79, 140, 255, 0.12);
    border-radius: 28px;
    padding: 55px 60px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.apk-install-box::before {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.04), transparent);
    border-radius: 50%;
}

.apk-install-box h2 {
    position: relative;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px;
    padding-bottom: 16px;
    background: var(--gradient-text);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    letter-spacing: -0.02em;
}

.apk-install-box h2:not(:first-child) {
    margin-top: 50px;
}

.apk-install-box h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    border-radius: 30px;
    background: linear-gradient(90deg, var(--blue-primary), var(--yellow));
}

.apk-install-box h2 i {
    -webkit-text-fill-color: var(--yellow);
    margin-right: 10px;
}

.apk-install-box .install-desc {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.apk-install-box .install-desc strong {
    color: var(--yellow);
}

.apk-install-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    counter-reset: step;
}

.apk-install-list li {
    position: relative;
    counter-increment: step;
    padding: 20px 24px 20px 76px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(79, 140, 255, 0.08);
    color: #eef3ff;
    font-size: 16px;
    line-height: 1.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.apk-install-list li::before {
    content: counter(step);
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-primary), var(--purple));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(79, 140, 255, 0.25);
    transition: 0.3s;
}

.apk-install-list li:hover {
    transform: translateX(8px);
    border-color: var(--blue-primary);
    background: rgba(79, 140, 255, 0.06);
    box-shadow: 0 12px 30px rgba(79, 140, 255, 0.1);
}

.apk-install-list li:hover::before {
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
}

.apk-install-list li strong {
    color: var(--yellow);
}

.apk-install-item {
    margin-top: 20px;
    padding: 24px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(79, 140, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.apk-install-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(var(--blue-primary), var(--yellow));
    border-radius: 0 4px 4px 0;
}

.apk-install-item:hover {
    transform: translateY(-4px);
    border-color: var(--blue-primary);
    box-shadow: 0 15px 35px rgba(79, 140, 255, 0.12);
}

.apk-install-item strong {
    display: block;
    color: var(--yellow);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.apk-install-item strong i {
    margin-right: 10px;
}

.apk-install-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

/*==================================
        RESPONSIVE - INSTALL
==================================*/

@media (max-width: 991px) {
    .apk-install-box {
        padding: 40px 35px;
    }
    
    .apk-install-box h2 {
        font-size: 30px;
    }
    
    .apk-install-item strong {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .apk-install-section {
        padding: 15px 12px 30px;
    }
    
    .apk-install-box {
        padding: 28px 18px;
        border-radius: 20px;
    }
    
    .apk-install-box h2 {
        font-size: 24px;
        padding-bottom: 14px;
    }
    
    .apk-install-box h2::after {
        width: 60px;
    }
    
    .apk-install-box .install-desc {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-install-list li {
        padding: 16px 16px 16px 58px;
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-install-list li::before {
        width: 30px;
        height: 30px;
        left: 16px;
        font-size: 13px;
    }
    
    .apk-install-item {
        padding: 18px 20px;
    }
    
    .apk-install-item strong {
        font-size: 18px;
    }
    
    .apk-install-item p {
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .apk-install-box h2 {
        font-size: 20px;
    }
    
    .apk-install-box .install-desc {
        font-size: 14px;
    }
    
    .apk-install-list li {
        font-size: 14px;
        padding: 14px 14px 14px 50px;
    }
    
    .apk-install-list li::before {
        width: 26px;
        height: 26px;
        font-size: 12px;
        left: 14px;
    }
    
    .apk-install-item strong {
        font-size: 16px;
    }
    
    .apk-install-item p {
        font-size: 14px;
    }
}

/*==================================
        APK CONCLUSION
==================================*/

.apk-conclusion-section {
    padding: 20px 20px 60px;
}

.apk-conclusion-container {
    max-width: 1400px;
    margin: auto;
}

.apk-conclusion-box {
    background: linear-gradient(145deg, #0f1835, #1a2860);
    border: 1px solid rgba(79, 140, 255, 0.12);
    border-radius: 28px;
    padding: 55px 60px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
   
}

.apk-conclusion-box::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.05), transparent);
    border-radius: 50%;
}

.apk-conclusion-box::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.04), transparent);
    border-radius: 50%;
}

.apk-conclusion-box .conclusion-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    animation: floatSlow 3s ease-in-out infinite;
}

.apk-conclusion-box h2 {
    position: relative;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    padding-bottom: 16px;
    background: var(--gradient-text);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    letter-spacing: -0.02em;
    z-index: 1;
}

.apk-conclusion-box h2::after {
     content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    border-radius: 20px;
    background: var(--gradient-warm);
}

.apk-conclusion-box p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.apk-conclusion-box p strong {
    color: var(--yellow);
}

.apk-conclusion-box .conclusion-tag {
    display: inline-block;
    margin-top: 24px;
    padding: 8px 24px;
    background: rgba(79, 140, 255, 0.08);
    border: 1px solid rgba(79, 140, 255, 0.12);
    border-radius: 50px;
    color: var(--blue-primary);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.apk-conclusion-box .conclusion-tag i {
    margin-right: 8px;
}

/*==================================
        RESPONSIVE - CONCLUSION
==================================*/

@media (max-width: 991px) {
    .apk-conclusion-box {
        padding: 40px 35px;
    }
    
    .apk-conclusion-box h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .apk-conclusion-section {
        padding: 15px 12px 40px;
    }
    
    .apk-conclusion-box {
        padding: 28px 18px;
        border-radius: 20px;
    }
    
    .apk-conclusion-box .conclusion-icon {
        font-size: 44px;
    }
    
    .apk-conclusion-box h2 {
        font-size: 24px;
        padding-bottom: 14px;
    }
    
    .apk-conclusion-box h2::after {
        width: 60px;
    }
    
    .apk-conclusion-box p {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .apk-conclusion-box .conclusion-tag {
        font-size: 13px;
        padding: 6px 18px;
    }
}

@media (max-width: 420px) {
    .apk-conclusion-box .conclusion-icon {
        font-size: 36px;
    }
    
    .apk-conclusion-box h2 {
        font-size: 20px;
    }
    
    .apk-conclusion-box p {
        font-size: 14px;
    }
}

/*==================================
        EXTRA POLISH - SCROLL ANIMATIONS
==================================*/

.apk-content,
.spec-box,
.apk-info-box,
.apk-download-box,
.apk-install-box,
.apk-conclusion-box {
    animation: fadeUp 0.8s ease forwards;
}

.spec-box {
    animation-delay: 0.1s;
}

.apk-info-box {
    animation-delay: 0.2s;
}

.apk-download-box {
    animation-delay: 0.3s;
}

.apk-install-box {
    animation-delay: 0.4s;
}

.apk-conclusion-box {
    animation-delay: 0.5s;
}

/* Smooth section spacing */
.apk-hero + .spec-section,
.spec-section + .apk-info-section,
.apk-info-section + .apk-download-section,
.apk-download-section + .apk-install-section,
.apk-install-section + .apk-conclusion-section {
    margin-top: 0;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .container { gap: 24px; }
    .hero-content h1 { font-size: 2.8rem; }
    .dashboard-card { width: 280px; padding: 26px 22px 28px; }
    .trophy { width: 90px; height: 90px; font-size: 38px; }
}

@media (max-width: 991px) {
    .hero-right { display: none; }
    .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-content p:last-of-type { border-left: none; padding-left: 0; border-top: 2px solid var(--yellow); padding-top: 14px; }
    .hero-section { padding: 60px 0 70px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .section-heading h2 { font-size: 28px; }
    .game-card, .game-card.reverse { flex-direction: column; text-align: center; }
    .game-img { width: 100%; max-width: 360px; }
    .game-content h3::after { left: 50%; transform: translateX(-50%); }
    .content-box { padding: 32px 30px; }
    .page-card { padding: 36px 32px; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 0.92rem; }
    .hero-btn { min-width: 120px; height: 44px; font-size: 0.85rem; padding: 0 16px; }
    .hero-buttons { gap: 10px; }
    .hero-section { padding: 50px 0 60px; }
    
    .table-container { padding: 20px 16px; border-radius: 16px; }
    .gift-code-section { padding: 18px 18px; }
    .gift-code-section h2 { font-size: 1.1rem; }
    .gift-code-section .code { font-size: 0.95rem; padding: 10px 16px; letter-spacing: 1.5px; }
    .gift-code-wrapper { flex-direction: column; align-items: stretch; }
    .gift-code-section .code-copy-btn { justify-content: center; }
    
    .specs-heading { font-size: 1.2rem; }
    .specs-table td { padding: 10px 8px; font-size: 0.82rem; }
    .specs-table td:first-child { width: 38%; }
    .specs-table td:last-child { width: 62%; padding-left: 10px; }
    .specs-table td:first-child::after { content: ""; }
    
    .tiranga-section { padding: 50px 0; border-radius: 8px; }
    .feature-grid { grid-template-columns: 1fr; }
    .section-heading h2 { font-size: 24px; }
    .about-content { padding: 18px; }
    .features-box h3 { font-size: 22px; }
    .about-content p, .feature-card p { font-size: 15px; }
    
    .content-section { padding: 12px 12px; }
    .content-box { padding: 20px 16px; border-radius: 16px; }
    .content-box h2 { font-size: 22px; padding-bottom: 12px; }
    .content-box h2::after { width: 50px; }
    .content-box h3 { font-size: 18px; }
    .content-box p { font-size: 15px; line-height: 1.8; }
    .content-btn { width: 100%; max-width: 220px; height: 46px; font-size: 14px; }
    .content-list li { padding: 14px 14px 14px 54px; font-size: 14px; }
    .content-list li::before { width: 30px; height: 30px; left: 14px; top: 14px; font-size: 13px; }
    .content-ul li { padding: 12px 14px 12px 42px; font-size: 14px; }
    .content-ul li::before { width: 18px; height: 18px; left: 14px; font-size: 10px; }
    
    .game-card { padding: 18px 16px; gap: 20px; border-radius: 16px; }
    .game-img { max-width: 100%; }
    .game-content h3 { font-size: 20px; }
    .game-content p { font-size: 15px; }
    
    .tips-list li { padding: 18px 18px 18px 62px; font-size: 14px; }
    .tips-list li::before { left: 16px; top: 18px; width: 32px; height: 32px; font-size: 13px; border-radius: 10px; }
    .tips-list li strong { font-size: 16px; }
    
    .faq-item h3 { font-size: 16px; padding: 16px 55px 16px 18px; }
    .faq-item h3::after { width: 30px; height: 30px; right: 16px; font-size: 18px; }
    .faq-content { padding: 0 18px 18px; }
    .faq-content p { font-size: 14px; }
    
    .page-section { padding: 50px 12px; }
    .page-card { padding: 22px 18px; border-radius: 16px; }
    .page-card h1 span { font-size: 28px; padding: 14px 20px; width: 100%; }
    .page-card h1 span::after { width: 60px; }
    .page-card h1 { margin-bottom: 28px; }
    .page-card h2 { font-size: 20px; padding-left: 14px; }
    .page-card h2::before { height: 24px; }
    .page-card h2::after { width: 50px; left: 14px; }
    .page-card p { font-size: 15px; }
    
    .contact-box { padding: 18px 16px; }
    .contact-item { flex-direction: column; text-align: center; padding: 16px; }
    .contact-icon { width: 50px; height: 50px; font-size: 20px; }
    .contact-info strong { font-size: 16px; }
    .contact-info a { font-size: 15px; }
    
    .policy-list { gap: 16px; }
    .policy-list li { padding: 20px 18px 20px 62px; border-radius: 14px; }
    .policy-list li::before { left: 16px; top: 20px; width: 34px; height: 34px; font-size: 14px; border-radius: 10px; }
    .policy-list li strong { font-size: 17px; }
    .policy-list li p { font-size: 14px; }
    
    .page-list li { padding: 14px 14px 14px 46px; font-size: 14px; }
    .page-list li::before { width: 22px; height: 22px; left: 14px; top: 14px; font-size: 12px; }
}

@media (max-width: 420px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-badge { font-size: 0.65rem; padding: 4px 14px; }
    .hero-content p { font-size: 0.85rem; }
    .hero-btn { min-width: 100px; height: 40px; font-size: 0.78rem; padding: 0 12px; gap: 6px; }
    
    .table-container { padding: 14px 10px; }
    .gift-code-section { padding: 14px 12px; }
    .gift-code-section h2 { font-size: 0.95rem; }
    .gift-code-section .code { font-size: 0.78rem; padding: 8px 12px; letter-spacing: 1px; }
    .gift-code-section .code-copy-btn { font-size: 0.75rem; padding: 8px 14px; }
    .specs-heading { font-size: 1rem; }
    .specs-table td { font-size: 0.72rem; padding: 8px 6px; }
    .specs-table td:first-child { width: 40%; }
    .specs-table td:last-child { width: 60%; padding-left: 6px; }
    
    .tiranga-section { padding: 40px 0; }
    .section-heading h2 { font-size: 20px; }
    .features-box h3 { font-size: 18px; }
    
    .content-box { padding: 16px 12px; }
    .content-box h2 { font-size: 18px; }
    .content-box p { font-size: 13px; }
    .content-btn { max-width: 180px; height: 40px; font-size: 12px; }
    .content-list li { padding: 12px 12px 12px 44px; font-size: 13px; }
    .content-list li::before { width: 24px; height: 24px; left: 12px; top: 12px; font-size: 11px; }
    .content-ul li { font-size: 13px; padding: 10px 12px 10px 36px; }
    .content-ul li::before { width: 16px; height: 16px; left: 12px; font-size: 9px; }
    
    .game-card { padding: 14px 12px; }
    .game-content h3 { font-size: 17px; }
    .game-content p { font-size: 13px; }
    
    .tips-list li { padding: 14px 14px 14px 50px; font-size: 13px; }
    .tips-list li::before { width: 26px; height: 26px; left: 14px; top: 14px; font-size: 11px; }
    .tips-list li strong { font-size: 14px; }
    
    .faq-item h3 { font-size: 14px; padding: 14px 48px 14px 14px; }
    .faq-item h3::after { width: 26px; height: 26px; right: 14px; font-size: 16px; }
    
    .page-card h1 span { font-size: 22px; padding: 10px 16px; }
    .page-card h2 { font-size: 17px; }
    .page-card p { font-size: 13px; }
    
    .policy-list li { padding: 16px 14px 16px 50px; }
    .policy-list li::before { width: 28px; height: 28px; font-size: 12px; left: 14px; top: 16px; }
    .policy-list li strong { font-size: 15px; }
    .policy-list li p { font-size: 13px; }
}

/*==================================
        AUTHOR SECTION
==================================*/

.author-section{
    padding:90px 20px;
}

.author-container{
    max-width:1400px;
    margin:auto;
}

.author-box{
    background:linear-gradient(135deg,#07101f 0%,#141d47 50%,#2C3270 100%);
    border:1px solid rgba(101,162,255,.18);
    border-radius:28px;
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

/*==================================
        AUTHOR PROFILE
==================================*/

.author-profile{
    display:flex;
    align-items:center;
    gap:45px;
}

.author-image{
    flex:0 0 300px;
}

.author-image img{
    width:100%;
    display:block;
    border-radius:24px;
    border:4px solid rgba(101,162,255,.25);
    box-shadow:0 18px 45px rgba(0,0,0,.35);
    transition:.35s ease;
}

.author-image img:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(101,162,255,.25);
}

.author-info{
    flex:1;
}

.author-info h1{
    position:relative;
    color:#fff;
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:35px;
    padding-bottom:18px;
}

.author-info h1::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:90px;
    height:4px;
    border-radius:30px;
    background:linear-gradient(90deg,#65A2FF,#ffffff);
}

.author-info p{
    color:#dce7ff;
    font-size:18px;
    line-height:1.9;
    margin-bottom:22px;
}

.author-info p:last-child{
    margin-bottom:0;
}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:992px){

.author-box{
    padding:40px;
}

.author-profile{
    flex-direction:column;
    text-align:center;
}

.author-image{
    flex:0 0 auto;
    max-width:280px;
}

.author-info h1{
    font-size:34px;
}

.author-info h1::after{
    left:50%;
    transform:translateX(-50%);
}

}

@media(max-width:768px){

.author-section{
    padding:60px 15px;
}

.author-box{
    padding:25px;
    border-radius:20px;
}

.author-profile{
    gap:30px;
}

.author-image{
    max-width:220px;
}

.author-image img{
    border-radius:18px;
}

.author-info h1{
    font-size:28px;
    padding-bottom:15px;
    margin-bottom:25px;
}

.author-info h1::after{
    width:70px;
}

.author-info p{
    font-size:16px;
    line-height:1.8;
    text-align:left;
}

}

.header{
    background:#0A0A1A;
    width:100%;
    position:relative;
}

.container{
    max-width:1250px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
    position:relative;
}

.logo img{
height:55px;
display:block;
}

.navbar{
display:flex;
align-items:center;
gap:28px;
}

.navbar a,
.dropbtn{
color:#fff;
text-decoration:none;
background:none;
border:none;
font-size:15px;
cursor:pointer;
font-weight:600;
}

.dropdown{
position:relative;
}

.dropdown-content{
position:absolute;
top:120%;
left:0;
background:#fff;
width:240px;
display:none;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.15);
z-index:999;
}

.dropdown-content a{
display:block;
padding:14px 18px;
color:#222;
font-size:15px;
border-bottom:1px solid #eee;
text-decoration:none;
}

.dropdown-content a:hover{
background:#80B3FF;
color:#fff;
}

.dropdown:hover .dropdown-content{
display:block;
}

.buttons{
display:flex;
gap:15px;
}

.login-btn{
background:#35d96d;
color:#000;
padding:14px 30px;
border-radius:12px;
font-weight:700;
text-decoration:none;
}

.register-btn{
background:#d91d17;
color:#fff;
padding:14px 30px;
border-radius:12px;
font-weight:700;
text-decoration:none;
}

.menu-toggle{
display:none;
font-size:32px;
color:#fff;
cursor:pointer;
}

@media (min-width:993px){
    .dropdown:hover .dropdown-content{
        display:block;
    }
}

@media (max-width:992px){

.menu-toggle{
    display:block;
}

.buttons{
    display:none;
}

.navbar{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#09091b;
    flex-direction:column;
    gap:0;
    padding:15px 0;
    z-index:9999;
}

.navbar.active{
    display:flex;
}

.navbar a,
.dropbtn{
    width:100%;
    padding:15px 20px;
    text-align:left;
}

.dropdown{
    width:100%;
}

.dropdown-content{
    display:none;
    position:static;
    width:100%;
    background:#15152a;
    box-shadow:none;
    border-radius:0;
}

.dropdown.active .dropdown-content{
    display:block;
}

.dropdown-content a{
    color:#fff;
    padding:12px 35px;
}

}

.tg-footer{
    background:#0A0A1A;
    padding: 40px 20px 30px;
    border-top: 2px solid #5996f0;
}

.tg-footer .tg-container{
    max-width:1200px;
    margin:auto;
}


.tg-footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:30px;
}

.tg-footer-links a{
    color:#d8d8e8;
    text-decoration:none;
    padding:12px 22px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:40px;
    transition:.3s;
}

.tg-footer-links a:hover{
    background:#80B3FF;
    color:#20254D;
    border-color:#80B3FF;
}

.tg-footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    text-align:center;
    color:#9aa3c5;
    font-size:14px;
}

@media(max-width:768px){

.tg-footer{
    padding:50px 15px 20px;
}

.tg-disclaimer-box{
    padding:25px;
}

.tg-disclaimer-box p{
    font-size:15px;
}

.tg-footer-links{
    gap:10px;
}

.tg-footer-links a{
    width:calc(50% - 10px);
    text-align:center;
    padding:12px;
}

}
