/* MonoDLC Theme - Purple Gradient Style */

:root {
    --bg: #101016;
    --panel: #17171f;
    --field: #14141b;
    --field-2: #1d1d28;
    --border: rgba(212, 202, 255, 0.08);
    --border-strong: rgba(212, 202, 255, 0.13);
    --text: #f5f1ff;
    --muted: #8a8596;
    --accent: #c9baff;
    --accent-strong: #a98cff;
    --danger: #ff6387;
    
    /* Override main.css variables */
    --background-color: #101016;
    --default-color: #cdcdcd;
    --heading-color: #c9baff;
    --accent-color: #c9baff;
    --contrast-color: #f5f1ff;
}

body {
    background: var(--bg) !important;
    color: var(--text) !important;
}

/* Header with purple accents */
.header {
    background-color: var(--bg) !important;
    border-bottom: 1px solid rgba(212, 202, 255, 0.08) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75) !important;
}

.index-page.scrolled .header {
    background-color: rgba(16, 16, 22, 0.9) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(169, 140, 255, 0.16), 0 18px 45px rgba(0, 0, 0, 0.85) !important;
}

/* Buttons with purple gradient */
.btn-getstarted,
.btn-getstarted:focus,
.btn-get-started,
.btn-get-started:focus {
    background: linear-gradient(135deg, rgba(214, 202, 255, 0.14), rgba(255, 255, 255, 0.04)) !important;
    color: #f7f3ff !important;
    border: none !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6) !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease !important;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover,
.btn-get-started:hover,
.btn-get-started:focus:hover {
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, rgba(213, 201, 255, 0.95), rgba(153, 122, 255, 0.82)) !important;
    box-shadow: 0 18px 42px rgba(111, 82, 255, 0.24) !important;
    color: #fff !important;
}

/* Cards with purple gradient */
.data-card,
.section-card,
.profile-header,
.hero,
.alt-features .icon-box > div,
.faq-container .faq-item {
    background:
        radial-gradient(circle at top, rgba(169, 140, 255, 0.08), transparent 32%),
        linear-gradient(135deg, rgba(17, 17, 24, 0.98), rgba(22, 21, 32, 0.98)) !important;
    border: 1px solid rgba(212, 202, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
    transition: transform 0.22s ease-in-out, box-shadow 0.22s ease-in-out, border-color 0.22s ease-in-out !important;
}

.data-card:hover,
.section-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 0 20px rgba(169, 140, 255, 0.18), 0 16px 40px rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(201, 186, 255, 0.28) !important;
}

/* Purchase cards with image blur effect */
.purchase-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(15, 15, 21, 0.98) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9) !important;
    border: 1px solid rgba(212, 202, 255, 0.08) !important;
    isolation: isolate;
}

.purchase-card::before {
    content: "";
    position: absolute;
    inset: -12px;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.12);
    opacity: 0.85;
    z-index: -2;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.purchase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(169, 140, 255, 0.08), transparent 55%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.95));
    z-index: -1;
    opacity: 1;
}

.purchase-card:hover::before {
    transform: scale(1.17);
    opacity: 1;
}

.purchase-card img {
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.95)) !important;
    transition: transform 0.25s ease, filter 0.25s ease !important;
}

.purchase-card:hover img {
    transform: translateY(-3px) scale(1.03) !important;
    filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 1)) !important;
}

/* Footer with purple accents */
.footer {
    background-color: var(--bg) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
}

footer > div {
    border: none !important;
}

footer,
footer > div,
.footer,
.footer-top,
.footer-links,
.footer-about {
    border-color: rgba(255, 255, 255, 0.04) !important;
}

.footer .social-links a,
.scroll-top {
    background: linear-gradient(135deg, rgba(214, 202, 255, 0.14), rgba(255, 255, 255, 0.04)) !important;
    border: 1px solid rgba(212, 202, 255, 0.08) !important;
    color: var(--accent) !important;
}

.footer .social-links a:hover,
.scroll-top:hover {
    background: linear-gradient(135deg, rgba(213, 201, 255, 0.95), rgba(153, 122, 255, 0.82)) !important;
    box-shadow: 0 18px 42px rgba(111, 82, 255, 0.24) !important;
    color: #fff !important;
}

/* Hero section */
.hero {
    background: var(--bg) !important;
    background-image: none !important;
}

.hero h1 {
    color: #ffffff !important;
}

.hero p {
    color: var(--muted) !important;
}

/* Hero buttons */
.hero .btn-get-started,
.hero .btn-get-started:focus,
.hero .btn-other,
.btn-other,
.btn-other:focus {
    background: linear-gradient(135deg, rgba(214, 202, 255, 0.14), rgba(255, 255, 255, 0.04)) !important;
    color: #f7f3ff !important;
    border: 1px solid rgba(212, 202, 255, 0.08) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6) !important;
}

.hero .btn-get-started:hover,
.hero .btn-get-started:focus:hover,
.hero .btn-other:hover,
.btn-other:hover,
.btn-other:focus:hover {
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, rgba(213, 201, 255, 0.95), rgba(153, 122, 255, 0.82)) !important;
    box-shadow: 0 18px 42px rgba(111, 82, 255, 0.24) !important;
    color: #fff !important;
}

/* Navigation links - remove ALL backgrounds */
.navmenu a,
.navmenu a:focus,
.navmenu li a,
.navmenu ul li a {
    color: white !important;
    background: transparent !important;
    background-color: transparent !important;
}

.navmenu a:hover,
.navmenu .active,
.navmenu li a:hover,
.navmenu ul li a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
    background-color: transparent !important;
}

.navmenu li,
.navmenu ul li {
    background: transparent !important;
    background-color: transparent !important;
}

.navmenu ul {
    background: transparent !important;
    background-color: transparent !important;
}

/* Desktop navigation - no backgrounds */
@media (min-width: 1200px) {
    .navmenu,
    .navmenu ul,
    .navmenu ul li,
    .navmenu ul li a {
        background: transparent !important;
        background-color: transparent !important;
    }
}

/* Mobile navigation */
@media (max-width: 1199px) {
    .navmenu ul {
        background: linear-gradient(180deg, rgba(34, 22, 55, 0.88), rgba(24, 15, 39, 0.94)) !important;
        border: 1px solid rgba(180, 140, 255, 0.14) !important;
        box-shadow: 0 18px 40px rgba(10, 4, 22, 0.45) !important;
        backdrop-filter: blur(18px) !important;
    }
}

/* Text colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--accent) !important;
}

.hero h1,
.hero h3 {
    color: #ffffff !important;
}

p, li, span {
    color: var(--muted);
}

/* Icon boxes */
.alt-features .icon-box i,
.data-card i {
    color: var(--accent) !important;
}

/* Forms */
.form-control,
.field input {
    background: rgba(15, 15, 21, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.055) !important;
    color: var(--text) !important;
}

.form-control:focus,
.field input:focus {
    background: rgba(15, 15, 21, 0.8) !important;
    border-color: rgba(201, 186, 255, 0.48) !important;
    box-shadow: 0 0 0 4px rgba(169, 140, 255, 0.08) !important;
}

.form-control::placeholder,
.field input::placeholder {
    color: rgba(245, 241, 255, 0.34) !important;
}

/* Auth pages - center forms vertically */
.customContainer {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 100px 20px 40px !important;
}

.form,
.form.signup {
    margin: 0 auto !important;
}

/* Auth form buttons */
.form .field button,
.form button.btn-getstarted {
    width: auto !important;
    min-width: 150px !important;
    padding: 10px 30px !important;
    font-size: 15px !important;
}

.form .field.button-field button {
    width: 100% !important;
    max-width: 200px !important;
}

/* FAQ items */
.faq-item {
    background:
        radial-gradient(circle at top left, rgba(169, 140, 255, 0.08), transparent 32%),
        linear-gradient(135deg, rgba(17, 17, 24, 0.98), rgba(22, 21, 32, 0.98)) !important;
    border: 1px solid rgba(212, 202, 255, 0.08) !important;
    border-radius: 16px !important;
}

.faq-item h3 {
    color: var(--text) !important;
}

.faq-toggle {
    color: var(--accent) !important;
}

.faq-content {
    background: transparent !important;
}

.faq-content p {
    color: var(--muted) !important;
}

/* Footer links and buttons */
.footer .footer-links ul a {
    color: var(--muted) !important;
    background: transparent !important;
    border: none !important;
}

.footer .footer-links ul a:hover {
    color: var(--accent) !important;
    background: transparent !important;
}

.footer h4 {
    color: var(--accent) !important;
}

.footer .footer-links ul li {
    background: transparent !important;
}

.footer .footer-links ul {
    background: transparent !important;
}

/* Override purple borders - keep only subtle purple on specific elements */
.data-card,
.purchase-card,
.profile-header,
.section-card,
.faq-item,
.nav-tabs,
.header {
    border: 1px solid rgba(212, 202, 255, 0.08) !important;
}

/* All other borders should be neutral */
.footer,
.footer-top,
.container,
.row,
.col,
section:not(.data-card):not(.purchase-card),
div:not(.data-card):not(.purchase-card):not(.profile-header):not(.section-card):not(.faq-item):not(.nav-tabs) {
    border-color: rgba(255, 255, 255, 0.04) !important;
}
