/* Global Styles & Variables */
:root {
    --bg-color: #0d0d12;
    --card-bg: #1a1a24;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --primary: #6c5ce7;
    --primary-hover: #5649c0;
    --accent: #00cec9;
    --accent-glow: rgba(0, 206, 201, 0.4);
    --danger: #ff7675;
    --success: #00b894;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Pretendard', sans-serif;
    --gradient-btn: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.accent {
    color: var(--accent);
}

.highlight {
    background: linear-gradient(120deg, transparent 60%, var(--primary) 60%);
    padding: 0 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(108, 92, 231, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
    background: rgba(13, 13, 18, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.nav-cta:hover {
    background: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 206, 201, 0.1) 0%, transparent 40%);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    background: rgba(255, 118, 117, 0.2);
    color: var(--danger);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 118, 117, 0.3);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.5);
}

.guarantee {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.guarantee i {
    color: var(--success);
    margin-right: 5px;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-color), #111116);
}

.price-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    min-width: 600px;
}

.price-table th,
.price-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-table th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    color: var(--text-muted);
}

.price-table .gamsgo-col {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    font-weight: 800;
    border-top: 3px solid var(--primary);
}

.price-table .service-name {
    text-align: left;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-table i {
    font-size: 1.2rem;
    width: 20px;
}

.fa-netflix {
    color: #e50914;
}

.fa-youtube {
    color: #ff0000;
}

.fa-video {
    color: #113ccf;
}

.official-price {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.7;
}

.gamsgo-price {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    background: rgba(108, 92, 231, 0.05);
}

.save-amount {
    color: var(--success);
    font-weight: 600;
}

.price-table tfoot td {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 2rem 1.5rem;
}

.official-total {
    text-decoration: line-through;
    color: var(--text-muted);
}

.gamsgo-total {
    font-size: 1.5rem;
    color: var(--primary);
}

.total-save {
    background: var(--gradient-btn);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    text-shadow: 0 2px 10px rgba(108, 92, 231, 0.3);
}

.disclaimer {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    opacity: 0.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-color);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.step-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: 0.3s;
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: var(--card-bg);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-body {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-muted);
}

.accordion-item.active .accordion-body {
    padding: 1.5rem;
    max-height: 200px;
    /* Rough estimate */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    font-size: 0.8rem;
    transition: 0.3s;
}

/* Footer CTA */
.footer-cta {
    padding: 6rem 0 3rem;
    text-align: center;
    background: linear-gradient(to top, rgba(108, 92, 231, 0.1), transparent);
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.2rem 3.5rem;
}

.trust-icons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-icons i {
    color: var(--success);
}

.copyright {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price-table th,
    .price-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* Bonus Text */
.bonus-text {
    margin-top: 1rem;
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.bonus-tag {
    color: #ffd700 !important;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.visitor-counter {
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}