:root {
    --bg-color: #0a0a12;
    --text-color: #e0e0e0;
    --accent-primary: #00f3ff;
    --accent-secondary: #9d00ff;
    --accent-tertiary: #ff9d00;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--accent-primary);
    }

    50% {
        box-shadow: 0 0 20px var(--accent-primary), 0 0 10px var(--accent-secondary);
    }

    100% {
        box-shadow: 0 0 5px var(--accent-primary);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 243, 255, 0.5);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid var(--accent-secondary);
    color: #fff;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.2);
}

.author-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 30px;
    margin-bottom: 30px;
    font-style: italic;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    background: radial-gradient(circle at 50% 50%, rgba(157, 0, 255, 0.1) 0%, rgba(10, 10, 18, 1) 70%);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 350px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0d0d16;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

/* Characters */
.characters {
    padding: 100px 0;
}

.char-card {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.char-info h3 {
    color: var(--accent-tertiary);
    margin-bottom: 10px;
}

/* Checkpoint/Buy Section */
.buy-section {
    padding: 100px 0;
    text-align: center;
}

.price-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.price-card {
    background: #15151f;
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.badge-primary {
    background: var(--accent-primary);
    color: #000;
}

.badge-secondary {
    background: var(--accent-secondary);
    color: #fff;
}

.price-card.featured {
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.price-card.recommended {
    border: 1px solid var(--accent-secondary);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.1);
}

.price-card.recommended span {
    color: var(--accent-secondary);
    font-weight: 600;
    opacity: 1;
}

/* Mobile Quote Fix */
@media (max-width: 480px) {
    .quote-section {
        padding: 40px 5px;
    }

    .quote-text {
        font-size: 1rem;
        padding: 0;
    }

    .quote-text::before,
    .quote-text::after {
        font-size: 1.4rem;
        margin: 0 3px;
    }
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    opacity: 0.6;
}

.author-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.author-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-primary);
}

/* Quote Section */
.quote-section {
    padding: 60px 20px;
    background: linear-gradient(to right, rgba(13, 13, 22, 1), rgba(157, 0, 255, 0.05), rgba(13, 13, 22, 1));
    text-align: center;
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    color: var(--accent-primary);
    font-size: 2rem;
    vertical-align: top;
    margin: 0 5px;
    opacity: 0.5;
}

/* Author Section */
.author-section {
    padding: 60px 0;
    background: #0d0d16;
    border-top: 1px solid var(--glass-border);
}

.author-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.author-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.author-text h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 30px auto;
        gap: 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        display: block;
        text-align: center;
    }

    .hero {
        padding-bottom: 50px;
        /* Reduce bottom spacing on mobile */
    }

    .hero-image img {
        transform: none;
        max-width: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Reverse card for mobile only (Gabriel) */
    .char-reverse {
        flex-direction: row-reverse;
        text-align: right;
    }

    .author-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}