/* ========================= */
/* RESET & BASE STYLES */
/* ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff4655;
    --secondary-color: #00e5ff;
    --accent-color: #ffde59;
    --dark-bg: #0a0a16;
    --darker-bg: #05050f;
    --card-bg: rgba(20, 20, 40, 0.9);
    --text-light: #ffffff;
    --text-muted: #a0a0c0;
    --gradient-primary: linear-gradient(45deg, #ff4655, #ff6b6b);
    --gradient-secondary: linear-gradient(45deg, #00e5ff, #00ffea);
    --gradient-accent: linear-gradient(45deg, #ffde59, #ffbb00);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.6;
}

/* ========================= */
/* BACKGROUND ELEMENTS */
/* ========================= */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-particle {
    position: absolute;
    background: rgba(255, 70, 85, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.bg-particle.p1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 70, 85, 0.15) 0%, transparent 70%);
}

.bg-particle.p2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
}

.bg-particle.p3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.1) 0%, transparent 70%);
}

.bg-particle.p4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-delay: -7s;
    background: radial-gradient(circle, rgba(255, 70, 85, 0.08) 0%, transparent 70%);
}

.bg-particle.p5 {
    width: 180px;
    height: 180px;
    bottom: 40%;
    right: 30%;
    animation-delay: -12s;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 70, 85, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 70, 85, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 70, 85, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.5;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

/* ========================= */
/* HEADER & NAVIGATION */
/* ========================= */
header {
    background: rgba(10, 10, 22, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 70, 85, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-v2s {
    position: relative;
    display: flex;
    gap: 2px;
}

.v2s-char {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
    text-shadow: 0 0 10px currentColor;
}

.v2s-v { color: #ff4655; }
.v2s-2 { color: #00e5ff; }
.v2s-s { color: #ffde59; }

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 70, 85, 0.3) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.logo-subtext {
    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-link i {
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--text-light);
    background: rgba(255, 70, 85, 0.1);
}

.nav-link.active {
    color: var(--text-light);
    background: linear-gradient(45deg, rgba(255, 70, 85, 0.2), rgba(0, 229, 255, 0.2));
    border: 1px solid rgba(255, 70, 85, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: transform 0.3s;
    padding: 0.5rem;
}

.cart-icon:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.3rem;
    padding: 0.5rem;
}

/* ========================= */
/* MAIN CONTENT */
/* ========================= */
main {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 1.5rem;
    width: 100%;
    overflow-x: hidden;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.page.active {
    display: block;
}

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

/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 1rem;
    width: 100%;
    overflow-x: hidden;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0 1rem;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo-v2s {
    position: relative;
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-v2s-char {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    text-shadow: 0 0 20px currentColor;
}

.hero-v2s-v { color: #ff4655; animation: pulse 2s infinite; }
.hero-v2s-2 { color: #00e5ff; animation: pulse 2s infinite 0.2s; }
.hero-v2s-s { color: #ffde59; animation: pulse 2s infinite 0.4s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 70, 85, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    background: linear-gradient(45deg, #fff, #a0a0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.4;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.hero-desc {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
    background: rgba(20, 20, 40, 0.7);
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 70, 85, 0.2);
    flex: 1;
    min-width: 100px;
    max-width: 120px;
    transition: transform 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 70, 85, 0.3);
    margin: 0.5rem;
    max-width: 250px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 70, 85, 0.4);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 300px;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-game-elements {
    position: relative;
    width: 100%;
    height: 200px;
}

.game-character {
    display: none; /* Sembunyikan di mobile untuk hemat ruang */
}

.game-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-light);
    background: rgba(20, 20, 40, 0.8);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 70, 85, 0.3);
    transition: all 0.3s;
    min-width: 80px;
}

.game-icon:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.game-icon i {
    font-size: 1.2rem;
}

.game-icon span {
    font-size: 0.75rem;
}

.game-icon.aimbot i { color: #ff4655; }
.game-icon.wallhack i { color: #00e5ff; }
.game-icon.speed i { color: #ffde59; }

/* ========================= */
/* FEATURES SECTION */
/* ========================= */
.features-section,
.testimoni-section,
.comparison-section,
.faq-section {
    margin-bottom: 4rem;
    padding: 1rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    padding: 0 1rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 70, 85, 0.2);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 25px rgba(0, 229, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ========================= */
/* TESTIMONI SECTION */
/* ========================= */
.testimoni-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimoni-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.3s;
}

.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.testimoni-rating {
    color: #ffde59;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.testimoni-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================= */
/* CTA SECTION */
/* ========================= */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.1), rgba(0, 229, 255, 0.1));
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 70, 85, 0.3);
    margin-bottom: 4rem;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.2;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================= */
/* PRODUK SECTION */
/* ========================= */
.produk-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.produk-section {
    padding: 0 1rem 3rem;
}

.produk-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.produk-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 70, 85, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.produk-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.2);
}

.produk-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    z-index: 2;
}

.produk-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.1), rgba(0, 229, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.produk-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.produk-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    filter: blur(15px);
}

.produk-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.2;
}

.produk-desc {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
    min-height: auto;
}

.produk-fitur {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.produk-fitur span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
}

.produk-fitur i {
    color: #00ff88;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.lihat-harga-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(45deg, rgba(255, 70, 85, 0.8), rgba(255, 107, 107, 0.8));
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.lihat-harga-btn:hover {
    background: linear-gradient(45deg, #ff4655, #ff6b6b);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.3);
}

/* ========================= */
/* COMPARISON TABLE */
/* ========================= */
.comparison-section {
    padding: 0 1rem 3rem;
    max-width: 100%;
    overflow-x: hidden;
}

.comparison-table {
    overflow-x: auto;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 70, 85, 0.2);
    padding: 1rem;
    margin: 0 -1rem;
    width: calc(100% + 2rem);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th {
    background: linear-gradient(45deg, rgba(255, 70, 85, 0.1), rgba(0, 229, 255, 0.1));
    padding: 1rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 2px solid var(--primary-color);
    white-space: nowrap;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(255, 70, 85, 0.05);
}

.comparison-table .yes {
    color: #00ff88;
    font-size: 1.1rem;
}

.comparison-table .no {
    color: #ff4655;
    font-size: 1.1rem;
}

/* ========================= */
/* TENTANG SECTION */
/* ========================= */
.tentang-section-full {
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.about-hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 70, 85, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.stat-card .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.tentang-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tentang-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.tentang-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.tentang-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.1), rgba(255, 222, 89, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.tentang-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.tentang-item p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ========================= */
/* KONTAK SECTION */
/* ========================= */
.kontak-header {
    text-align: center;
    padding: 2rem 1rem 0;
}

.kontak-section {
    padding: 1rem;
}

.kontak-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.kontak-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kontak-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.3s;
}

.kontak-card:hover {
    border-color: #ff4655;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.2);
}

.kontak-icon {
    font-size: 1.8rem;
    color: #00e5ff;
    min-width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kontak-details {
    flex: 1;
}

.kontak-details h3 {
    color: #f0f0f0;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.kontak-details p {
    color: #a0a0c0;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.9rem;
}

.status-online {
    color: #00e5ff;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.kontak-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff4655;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 70, 85, 0.1);
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.kontak-link:hover {
    background: rgba(255, 70, 85, 0.2);
    color: #ff2e3f;
}

.pesan-form-container {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 70, 85, 0.2);
}

.pesan-form h3 {
    color: #00e5ff;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a0c0;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 70, 85, 0.3);
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-group textarea {
    padding-left: 2.5rem;
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4655;
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(45deg, #ff4655, #ff6b6b);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #ff2e3f, #ff4655);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.3);
}

/* ========================= */
/* FAQ SECTION */
/* ========================= */
.faq-section {
    padding: 0 1rem 3rem;
    max-width: 100%;
}

.faq-container {
    margin-top: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 70, 85, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 70, 85, 0.05);
}

.faq-question h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #00e5ff;
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem;
    max-height: 500px;
}

.faq-answer p {
    color: #a0a0c0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ========================= */
/* MODAL HARGA */
/* ========================= */
.harga-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    padding: 1rem;
}

.harga-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.98), rgba(10, 10, 22, 0.98));
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    border-radius: 15px;
    border: 2px solid rgba(255, 70, 85, 0.5);
    box-shadow: 0 15px 40px rgba(255, 70, 85, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: rgba(255, 70, 85, 0.1);
    border-bottom: 1px solid rgba(255, 70, 85, 0.3);
    flex-shrink: 0;
}

.modal-header h3 {
    color: #00e5ff;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.2;
}

.close-modal {
    background: none;
    border: none;
    color: #ff4655;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    flex-shrink: 0;
}

.close-modal:hover {
    background: rgba(255, 70, 85, 0.1);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.durasi-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.durasi-option {
    background: rgba(20, 20, 40, 0.7);
    border: 2px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.durasi-option:hover {
    border-color: #00e5ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 229, 255, 0.2);
}

.durasi-option.selected {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

.durasi-label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 0.3rem;
}

.durasi-harga {
    font-size: 1.4rem;
    color: #ff4655;
    font-weight: 900;
    text-shadow: 0 0 8px rgba(255, 70, 85, 0.5);
    margin-bottom: 0.2rem;
}

.usd-harga {
    font-size: 0.9rem;
    color: #00e5ff;
    font-weight: 600;
}

.modal-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.modal-beli-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #00e5ff, #00b8d4);
    color: #0a0a16;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-beli-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.modal-beli-btn:not(:disabled):hover {
    background: linear-gradient(45deg, #00b8d4, #0095a8);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

/* ========================= */
/* CART SIDEBAR */
/* ========================= */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.98), rgba(10, 10, 22, 0.98));
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    border-left: 2px solid rgba(255, 70, 85, 0.5);
    backdrop-filter: blur(20px);
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(5px);
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 70, 85, 0.3);
    background: rgba(255, 70, 85, 0.1);
    flex-shrink: 0;
}

.cart-header h3 {
    color: #00e5ff;
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-cart {
    background: none;
    border: none;
    color: #ff4655;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-cart:hover {
    background: rgba(255, 70, 85, 0.1);
}

.cart-items {
    flex: 1;
    padding: 1.2rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: #a0a0c0;
    padding: 2rem 1rem;
    font-size: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.cart-item-info h4 {
    color: #f0f0f0;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.cart-item-info p {
    color: #00e5ff;
    font-weight: 700;
    font-size: 0.85rem;
}

.cart-item-info .durasi-item {
    color: #a0a0c0;
    font-size: 0.75rem;
    font-weight: normal;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4655;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.remove-item:hover {
    background: rgba(255, 70, 85, 0.1);
}

.cart-footer {
    padding: 1.2rem;
    border-top: 1px solid rgba(255, 70, 85, 0.3);
    background: rgba(255, 70, 85, 0.05);
    flex-shrink: 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #00e5ff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.total-amount {
    font-size: 1.4rem;
    color: #ff4655;
    text-shadow: 0 0 8px rgba(255, 70, 85, 0.5);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn:hover {
    background: linear-gradient(45deg, #128C7E, #075E54);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ========================= */
/* WHATSAPP QUICK BUTTONS */
/* ========================= */
.whatsapp-quick {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn.owner2 {
    background: linear-gradient(45deg, #128C7E, #075E54);
}

.whatsapp-btn.owner3 {
    background: linear-gradient(45deg, #075E54, #054d43);
}

.whatsapp-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(20, 20, 40, 0.95);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 70, 85, 0.3);
    color: white;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ========================= */
/* FOOTER */
/* ========================= */
footer {
    background: linear-gradient(to bottom, rgba(10, 10, 22, 0.95), rgba(5, 5, 15, 1));
    padding: 2.5rem 1.5rem 1rem;
    border-top: 1px solid rgba(255, 70, 85, 0.3);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-v2s-char {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    line-height: 0.8;
}

.footer-v2s-v {
    color: #ff4655;
    text-shadow: 0 0 10px rgba(255, 70, 85, 0.7);
}

.footer-v2s-2 {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

.footer-v2s-s {
    color: #ffde59;
    text-shadow: 0 0 10px rgba(255, 222, 89, 0.7);
}

.footer-text h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.footer-text p {
    color: #a0a0c0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #00e5ff;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255, 70, 85, 0.2);
    color: #ff4655;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-products h3,
.footer-disclaimer h3 {
    color: #00e5ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul,
.footer-products ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-products li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-products a {
    color: #a0a0c0;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-products a:hover {
    color: #ff4655;
    transform: translateX(5px);
}

.footer-disclaimer p {
    color: #a0a0c0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    gap: 0.8rem;
    font-size: 1.5rem;
    color: #a0a0c0;
    flex-wrap: wrap;
}

.payment-methods i:hover {
    color: #00e5ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0c0;
    font-size: 0.8rem;
}

.footer-tagline {
    color: #ff4655;
    font-weight: 700;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.v2s-tagline {
    color: #00e5ff;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

/* ========================= */
/* RESPONSIVE DESIGN - MOBILE */
/* ========================= */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .navbar {
        padding: 0 1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1.5rem 0;
        z-index: 999;
        border-top: 1px solid rgba(255, 70, 85, 0.3);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        gap: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        justify-content: center;
        padding: 1rem;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    main {
        margin-top: 70px;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-v2s-char {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-container,
    .testimoni-container,
    .produk-container,
    .tentang-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-table {
        margin: 0 -0.5rem;
        width: calc(100% + 1rem);
        padding: 0.5rem;
    }
    
    .comparison-table table {
        min-width: 500px;
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .about-hero {
        flex-direction: column;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kontak-container {
        flex-direction: column;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .durasi-container {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .whatsapp-quick {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .whatsapp-tooltip {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
        right: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-v2s-char {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .stat {
        min-width: 85px;
        max-width: 100px;
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .game-icon {
        min-width: 70px;
        padding: 0.5rem 0.6rem;
    }
    
    .game-icon i {
        font-size: 1rem;
    }
    
    .game-icon span {
        font-size: 0.7rem;
    }
    
    .produk-fitur {
        font-size: 0.8rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .cart-header h3 {
        font-size: 1.1rem;
    }
    
    .cart-total {
        font-size: 1rem;
    }
    
    .total-amount {
        font-size: 1.2rem;
    }
    
    .whatsapp-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .whatsapp-tooltip {
        right: 45px;
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* Fix untuk scroll di modal di HP */
@media (max-height: 600px) {
    .modal-content {
        max-height: 80vh;
    }
    
    .modal-body {
        max-height: 50vh;
        overflow-y: auto;
    }
}

/* Fix untuk orientation landscape di HP */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 1rem;
    }
    
    .hero-game-elements {
        height: 150px;
    }
    
    .modal-content {
        max-height: 70vh;
    }
    
    .cart-sidebar {
        height: 100vh;
    }
}

/* Touch-friendly elements untuk mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .cta-button,
    .lihat-harga-btn,
    .submit-btn,
    .checkout-btn,
    .modal-beli-btn,
    .whatsapp-btn {
        min-height: 44px; /* Minimum touch target size */
    }
    
    .remove-item,
    .close-modal,
    .close-cart {
        min-width: 44px;
        min-height: 44px;
    }
    
    .cart-item,
    .faq-question,
    .durasi-option {
        min-height: 44px;
    }
}