:root {
    /* --- Core Colors (Dark Theme) --- */
    --bg-dark: #0a0a0f;
    --bg-card: #111116;
    --bg-card-hover: #16161e;
    
    /* --- Aurora Gradient Variables (Aggressive Bright Pink) --- */
    --neon-blue: #ff1493;
    --neon-purple: #ff69b4;  /* Bright hot pink */
    --neon-pink: #ff1493;    /* Deep pink */
    
    /* --- Text Colors (Dark Theme) --- */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a8;
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* --- Glassmorphism (Dark Theme) --- */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --blur-val: 12px;
    
    /* --- Gradients (Aggressive Pink) --- */
    --primary-gradient: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    --accent-gradient: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo, .hero-title, .section-title {
    font-family: 'Outfit', sans-serif;
}

/* --- Ambient Background --- */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 15s infinite alternate ease-in-out;
}

.orb-1 { width: 50vw; height: 50vw; background: var(--neon-purple); top: -10%; left: -10%; }
.orb-2 { width: 40vw; height: 40vw; background: var(--neon-pink); bottom: -10%; right: -5%; animation-delay: -5s; }
.orb-3 { width: 30vw; height: 30vw; background: var(--neon-pink); top: 40%; left: 35%; opacity: 0.25; animation-delay: -2s; }

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    background: #FFB6C1; 
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
}

/* --- General Section Styles --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* --- Bento Grid Features --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Desktop Spans */
@media (min-width: 900px) {
    .span-2 { grid-column: span 2; }
    .span-3 { grid-column: span 3; }
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 20, 147, 0.6);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-flex;
    padding: 15px;
    border-radius: 15px;
    background: var(--glass-bg);
    color: #ff69b4;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Contact Section --- */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
}

.contact-link:hover {
    background: var(--primary-gradient);
    border-color: transparent;
}

/* --- Footer --- */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-link {
    color: var(--neon-purple);
    text-decoration: none;
    margin-left: 5px;
}

/* --- Utilities --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* --- Warning Modal --- */
.warning-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.warning-modal.active {
    display: flex;
}

.warning-content {
    background: var(--bg-card);
    border: 2px solid #ff1493;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.5);
}

.warning-icon {
    font-size: 4rem;
    color: #ff1493;
    margin-bottom: 20px;
}

.warning-title {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.warning-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.warning-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.warning-btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
}

.decline-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.decline-btn:hover {
    border-color: #ff1493;
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .span-2, .span-3 { grid-column: span 1; }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .bento-card { padding: 25px; }
}
