:root {
    --primary-color: #9147ff;
    --secondary-color: #0e0e10;
    --accent-color: #00ff7f;
    --text-color: #efeff1;
    --card-bg: #18181b;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.navbar-custom {
    background-color: var(--secondary-color);
    border-bottom: 1px solid #3a3a3d;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-color) !important;
    margin: 0 10px;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-section {
    background: url('img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
}

.neon-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px 40px;
}

.neon-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(145,71,255,0.5) 0%, transparent 70%);
    animation: flicker-bg 2s infinite;
    z-index: -1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    text-shadow:
        0 0 5px var(--primary-color),
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 40px var(--primary-color);
    animation: flicker-text 1.5s infinite;
    margin-bottom: 20px;
}

@keyframes flicker-text {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        text-shadow:
            0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 40px var(--primary-color);
    }
    20%, 24%, 55% {
        opacity: 0.7;
        text-shadow: none;
    }
}

@keyframes flicker-bg {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.5; }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.card-custom {
    background-color: var(--card-bg);
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    color: #efeff1 !important;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: #000;
}
.card-img-top2 {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background-color: #18181b;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
}

.promo-code {
    background-color: var(--primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-primary-custom:hover {
    background-color: #772ce8;
}

.social-icon {
    font-size: 1.5rem;
    margin: 0 10px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

footer {
    background-color: var(--card-bg);
    padding: 30px 0;
    margin-top: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
