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

:root {
    --bg-deep: #03050b;
    --bg-color: #03050b;
    --bg-surface: rgba(12, 16, 28, 0.75);
    --glass-edge: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.06);
    --neon-pink: #ff2f6e;
    --neon-cyan: #00e5ff;
    --neon-purple: #b026ff;
    --text-main: #ffffff;
    --text-primary: #ffffff;
    --text-dim: #b0b8d0;
    --text-secondary: #b0b8d0;
    --accent-color: #ff2f6e;
    --grad-primary: linear-gradient(135deg, #ff2f6e, #ff8a5c);
    --grad-glow: radial-gradient(circle at 50% 0%, rgba(255, 47, 110, 0.25), transparent 70%);
    --shadow-neon: 0 0 15px rgba(255, 47, 110, 0.4);
}

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

/* dynamic background grid */
.background-aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px);
    pointer-events: none;
    z-index: 0;
}

.glow-sphere {
    position: fixed;
    width: 70vw;
    height: 70vw;
    background: var(--neon-pink);
    filter: blur(140px);
    opacity: 0.15;
    border-radius: 50%;
    top: -20%;
    right: -20%;
    pointer-events: none;
    z-index: 0;
}

.glow-sphere-2 {
    position: fixed;
    width: 60vw;
    height: 60vw;
    background: var(--neon-cyan);
    filter: blur(150px);
    opacity: 0.12;
    bottom: -30%;
    left: -20%;
    pointer-events: none;
    z-index: 0;
}

/* Modern Glass Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(3, 5, 11, 0.7);
    border-bottom: 1px solid var(--glass-edge);
    padding: 1rem 2rem;
    transition: all 0.3s;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(120deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo span {
    color: var(--neon-pink);
    background: none;
    -webkit-background-clip: unset;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dim);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid var(--glass-edge);
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 47, 110, 0.15);
    color: white;
    box-shadow: 0 0 15px rgba(255, 47, 110, 0.3);
}

/* Hero Section - Redesigned */
.hero-modern {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* left align */
    padding: 0 8%;
    z-index: 2;
    background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/2483190/3c05b21ad51cf3b20c6dc521dcffe93646c7e50d/page_bg_v6.jpg?t=1778262106');
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
}

.hero-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    /* seamless gradient from dark left to transparent right */
    background: linear-gradient(90deg, var(--bg-deep) 0%, rgba(3, 5, 11, 0.8) 45%, transparent 100%);
    z-index: -1;
}

.hero-card {
    max-width: 800px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    padding: 0;
    text-align: left;
    box-shadow: none;
    animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    background: rgba(255, 47, 110, 0.15);
    border-left: 3px solid var(--neon-pink);
    border-radius: 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 6.5rem;
    font-weight: 900;
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-desc {
    font-size: 1.3rem;
    color: #c0c6d8;
    max-width: 650px;
    margin: 0 0 3rem 0;
    line-height: 1.6;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--neon-pink);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 25px rgba(255,47,110,0.3);
    border: 2px solid var(--neon-pink);
    cursor: pointer;
    text-decoration: none;
    color: white;
    display: inline-block;
    letter-spacing: 1px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,47,110,0.5);
    background: #ffffff;
    color: var(--neon-pink);
    border-color: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
    color: white;
    display: inline-block;
    letter-spacing: 1px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* container */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(120deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
}

/* modern grid cards */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 7rem;
}

.glass-panel {
    background: rgba(12, 18, 28, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 32px;
    border: 1px solid var(--glass-edge);
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-panel:hover {
    border-color: rgba(255,47,110,0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,47,110,0.1);
}

.glass-panel:hover::before {
    opacity: 1;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}
.feature-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dim);
    font-size: 1.1rem;
}

.feature-icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 12px;
}

/* gallery grid modern */
.gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 7rem;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-edge);
    transition: all 0.4s;
    background: rgba(0,0,0,0.3);
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 30px rgba(0,229,255,0.2);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* system req */
.sys-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 7rem;
}

.req-card {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s;
}

.req-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}

.req-card h4 {
    font-size: 1.8rem;
    font-family: 'Orbitron', monospace;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.req-card li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.req-card li:last-child {
    border-bottom: none;
}

/* stats */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin: 5rem 0;
    background: linear-gradient(145deg, rgba(20,24,34,0.6), rgba(10,14,24,0.8));
    backdrop-filter: blur(16px);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.stats-container h3 {
    font-size: 4rem;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(120deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stats-container p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 7rem;
}

.review-card {
    background: linear-gradient(145deg, rgba(20, 24, 36, 0.7), rgba(8, 12, 20, 0.7));
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}

.review-stars {
    color: #ffd966;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-style: italic;
}

/* accordion faq */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto 7rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    background: rgba(15,20,30,0.6);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: rgba(255,47,110,0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.faq-question {
    padding: 1.5rem 2.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
    color: #fff;
}
.faq-question:hover {
    background: rgba(255,47,110,0.05);
}
.faq-answer {
    padding: 0 2.5rem 2rem 2.5rem;
    color: var(--text-dim);
    border-top: 1px solid rgba(255,255,255,0.04);
    display: none;
    font-size: 1.1rem;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}
.faq-question span:last-child {
    font-size: 1.5rem;
    color: var(--neon-pink);
    transition: transform 0.3s;
}
.faq-item.active .faq-question span:last-child {
    transform: rotate(45deg);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* modern footer */
.footer-modern {
    background: rgba(3, 5, 11, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-edge);
    padding: 5rem 2rem 3rem;
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
}
.footer-brand {
    max-width: 350px;
}
.footer-links {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}
.footer-links h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}
.footer-links a {
    display: block;
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: 0.3s;
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}
.copyright {
    text-align: center;
    color: #5a6075;
    margin-top: 5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 3rem;
}
@media (max-width: 900px) {
    .hero-title { font-size: 3.5rem; }
    .hero-card { padding: 3rem 2rem; }
    .stats-container { gap: 3rem; padding: 3rem 2rem; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    .cta-group { flex-direction: column; }
    .nav-links { display: none; }
}
button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}
