/* ============================================
   SCREEN OTT - CUSTOM STYLES
   Dark + Gold Theme
   ============================================ */

:root {
    --dark-bg: #0a0e27;
    --dark-card: #1a1f3a;
    --gold: #d4af37;
    --gold-hover: #e5c158;
    --text-light: #e0e0e0;
    --text-muted: #9ca3af;
}

/* ============================================
   GENERAL
   ============================================ */

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

body {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f1535 100%);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar-custom {
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold) !important;
    text-decoration: none;
}

.logo:hover {
    color: var(--gold-hover) !important;
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--dark-bg);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    color: var(--dark-bg);
}

.btn-gold-outline {
    background: var(--dark-card);
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero p {
    color: var(--text-muted);
}

/* ============================================
   STATS
   ============================================ */

.stats-row {
    margin: 2rem 0;
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 2rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-title {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 3rem;
}

.section-features {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, transparent 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.section-pricing {
    background: transparent;
}

.section-faq {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, transparent 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* ============================================
   FEATURES
   ============================================ */

.feature-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-card {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.pricing-featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.pricing-card.pricing-featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-badge,
.trial-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.trial-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.pricing-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: bold;
    margin: 1rem 0;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-card .btn {
    margin-top: auto;
}

/* ============================================
   FAQ & ACCORDION
   ============================================ */

.accordion-custom .accordion-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.accordion-custom .accordion-button {
    background: var(--dark-card);
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-hover);
}

.accordion-custom .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
    background: rgba(212, 175, 55, 0.05);
    color: var(--text-muted);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
}

/* ============================================
   FORM CONTROLS
   ============================================ */

.form-control-custom {
    background: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background: var(--dark-bg);
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-control-custom::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

/* ============================================
   MODAL
   ============================================ */

.modal-custom {
    background: var(--dark-card);
    border: 2px solid var(--gold);
}

.modal-custom .modal-header {
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-custom .modal-title {
    color: var(--gold);
    font-weight: 600;
}

.border-gold {
    border-color: var(--gold) !important;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    margin-top: auto;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .pricing-card.pricing-featured {
        transform: scale(1);
    }

    .pricing-card:hover {
        transform: translateY(-3px);
    }

    .pricing-card.pricing-featured:hover {
        transform: translateY(-3px) scale(1);
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2rem 0.5rem;
    }

    .gradient-text {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .stats-row {
        margin: 1rem 0;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-gold {
    color: var(--gold);
}

.text-muted-custom {
    color: var(--text-muted);
}

.bg-dark-custom {
    background: var(--dark-card);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}