:root {
    --primary-color: #e6155e;
    --primary-color-hover: #c90e4f;
    --dark-bg: #1f1f1f;
    --light-bg: #f8f9fa;
    --text-color: #333333;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Glassmorphism Navbar */
.navbar-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: #555;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(31,31,31,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 21, 94, 0.4);
}

.btn-primary-custom:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 21, 94, 0.6);
    color: white;
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background-color: white;
}

.intro-title {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Game Mechanics Section */
.mechanics-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.mechanic-card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.mechanic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.mechanic-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mechanic-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .intro-text {
        font-size: 1rem;
    }
}

/* Floating Chapter Menu */
.chapter-nav-floating {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.chapter-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Protagonists Section */
.protagonist-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    background-color: white;
}

.protagonist-card:hover {
    transform: translateY(-10px);
}

.protagonist-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.protagonist-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: 1.5rem;
    font-size: 1.5rem;
    margin: 0;
}

/* Action Links Section */
.action-card {
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.action-card:hover {
    background: var(--primary-color-hover);
    color: white;
    transform: scale(1.05);
}

.action-card h3 {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    font-weight: 700;
}

/* Instagram Section */
.instagram-section {
    background-color: var(--dark-bg);
    color: white;
    padding: 4rem 0;
}
