:root {
    --bg-color: #050505;
    --card-bg: #121212;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-gold: #D4AF37;
    --accent-red: #D90429;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    --gradient-red: linear-gradient(135deg, #FF0000 0%, #990000 100%);
    --font-main: 'Outfit', sans-serif;
    --spacing-container: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    color: var(--text-primary);
}

.text-highlight {
    color: var(--accent-red);
    font-weight: bold;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

section {
    padding: 4rem 0;
}

/* Buttons */
.btn-cta {
    display: inline-block;
    background: var(--gradient-red);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.6);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(217, 4, 41, 0.8);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(217, 4, 41, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 4, 41, 0); }
}

/* Components */
.card {
    background: var(--card-bg);
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.badge-guarantee {
    width: 120px;
    margin: 0 auto 1rem;
    display: block;
}

/* Specific Sections */
.hero {
    min-height: 90vh; /* Reduced from 100vh slightly to show content below */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('../images/hero-model.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.subheadline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    border: 1px solid #333;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) brightness(0.5); /* Tease effect */
    transition: filter 0.3s;
}

.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.lock-icon {
    width: 60px;
    margin-bottom: 0.5rem;
}

/* Mobile Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--accent-gold);
    display: flex;
    justify-content: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .btn-cta {
    width: 100%;
    max-width: 400px;
    padding: 0.8rem;
    font-size: 1rem;
    animation: none; /* No pulse on sticky to save battery/distraction */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero { background-position: top center; }
}
