:root {
    --primary: #00AFF0;    /* OnlyFans Blue */
    --primary-glow: rgba(0, 175, 240, 0.4);
    --primary-dark: #008cc2;
    --dark-bg: #090B0F;
    --darker-bg: #050608;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #FFFFFF;
    --text-muted: #A0AEC0;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.section-padding {
    padding: 100px 5%;
}

.blur-bg {
    position: relative;
    overflow: hidden;
}

/* Header */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(9, 11, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 2px;
}

.logo i {
    color: var(--primary);
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--primary);
}

.nav-btn {
    background: var(--glass);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-btn {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
    border: none;
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 6px 25px var(--primary-glow);
}

.secondary-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.glow-text {
    text-shadow: 0 0 40px rgba(0, 175, 240, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Background Circles */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.5;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    background: rgba(138, 43, 226, 0.3);
    bottom: -200px;
    right: -200px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About / Approach Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 175, 240, 0.3);
}

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

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* How It Works Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 175, 240, 0.4);
}

.step-number {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08); /* Watermark effect */
    margin-bottom: 10px;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: var(--primary);
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Offer Section */
.offer {
    background-color: var(--darker-bg);
}

.offer-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-text {
    flex: 1;
}

.offer-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.offer-text span {
    color: var(--primary);
}

.offer-list {
    list-style: none;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.offer-list li i {
    color: var(--primary);
    font-size: 1.5rem;
}

.offer-visual {
    flex: 1;
    position: relative;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mock-notification {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
}

.mock-notification:nth-child(2) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.nm-icon {
    background: var(--primary);
    color: white;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nm-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.nm-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Casting Form */
.casting-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 10px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 175, 240, 0.2);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.form-success {
    margin-top: 20px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.hidden {
    display: none;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 175, 240, 0.3);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 25px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    padding: 40px 5%;
    border-top: 1px solid var(--glass-border);
    background: var(--darker-bg);
}

.footer-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-content .logo {
    margin-right: 15px;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: auto;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* Animations JS classes */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out; }
.slide-up { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.slide-right { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease-out; }
.slide-left { opacity: 0; transform: translateX(40px); transition: all 0.8s ease-out; }
.visible { opacity: 1; transform: translateY(0) translateX(0); }

/* Responsive */
@media (max-width: 900px) {
    .offer-container {
        flex-direction: column;
    }
    .hero h1 { font-size: 3rem; }
    .hero-buttons { flex-direction: column; }
    .stats-container { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 15px 20px;
    }
    .hero {
        padding-top: 150px;
    }
    nav {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 12px;
        padding-bottom: 5px;
        margin-top: 15px;
    }
    nav::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }
    nav a {
        white-space: nowrap;
        font-size: 0.9rem;
    }
    .hero-buttons {
        width: 100%;
    }
    .btn { width: 100%; justify-content: center; }
    .footer-content { flex-direction: column; gap: 15px; text-align: center; }
    .footer-content p { margin-right: 0; }
    .footer-content .logo { margin-right: 0; }
}
