:root {
    --primary-orange: #ff6b35;
    --primary-purple: #4a148c;
    --bg-gradient-start: #1a0b2e;
    --bg-gradient-end: #4a148c;
    --text-white: #ffffff;
    --accent-blue: #0d6efd;
}

body.landing-page {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--primary-purple) 100%);
    color: var(--text-white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* Navbar */
.landing-nav {
    padding: 1.5rem 0;
    background: transparent;
}

.landing-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-brand:hover {
    color: #eee;
}

.landing-brand i {
    color: var(--primary-orange);
}

.nav-link-custom {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link-custom:hover {
    color: var(--primary-orange);
}

.btn-cta-orange {
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 50px;
}

.hero-headline {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-orange {
    color: var(--primary-orange) !important;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
}

.hero-copy {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

.highlight-count {
    color: #ffc107; /* Yellow/Orange highlight */
    font-weight: 700;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.hero-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.hero-list i {
    color: var(--primary-orange);
    margin-right: 10px;
}

/* Right Visual */
.laptop-container {
    position: relative;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.icon-ig { top: -20px; left: 0; color: #E1306C; font-size: 2rem; }
.icon-fb { top: -40px; right: 80px; color: #4267B2; font-size: 1.8rem; }
.icon-li { bottom: 50px; left: -30px; color: #0077b5; font-size: 2.2rem; }
.icon-tk { bottom: 20px; left: 10px; color: #000; font-size: 1.5rem; }
.icon-yt { top: 10px; right: 20px; color: #FF0000; font-size: 2rem; }

.badge-plus {
    position: absolute;
    right: -20px;
    bottom: 80px;
    background: #ff4500;
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Value Prop */
.value-prop-section {
    text-align: center;
    padding: 60px 0;
    background: rgba(0,0,0,0.1);
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.value-prop-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features */
.features-section {
    padding: 60px 0;
    text-align: center;
}

.feature-icon-box {
    background: rgba(255,255,255,0.1);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.supporting-line {
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* Bottom CTAs */
.bottom-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-cta-secondary {
    background: #f8f9fa;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-cta-blue {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-cta-secondary:hover, .btn-cta-blue:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: inline-block;
}

.footer-url {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* --- GLASSMORPHISM UI FOR ADMIN/DASHBOARD --- */

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: #333; /* Text inside cards should be dark */
}

.glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Tables in Dark Mode / Glass */
.table-glass {
    color: white;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.table-glass th, .table-glass td {
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.table-glass thead {
    background: rgba(255,255,255,0.1);
}

.table-glass tr:hover {
    background: rgba(255,255,255,0.1);
}

/* List Groups in Glass */
.list-group-glass .list-group-item {
    background: rgba(255,255,255,0.1);
    color: #333; /* In white card it is okay, but if used on dark it needs white text */
    border-color: rgba(0,0,0,0.1);
}

/* If list group is inside glass-card (which is white-ish), then default list group is fine. 
   But if we want it to look "nice", maybe remove borders or add hover effect.
*/

/* Dashboard Nav overrides */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.8);
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-orange);
}

/* Inputs in Glass Context */
.form-control-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #333;
}
.form-control-glass:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #333;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

/* Card overrides for admin pages */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Ensure text in cards is readable */
.card-body {
    color: #333;
}
