/* 
   Lifebomb Guide Stylesheet
   Designed with Premium Dark/Neon Aesthetics (Violet, Emerald, Amber)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-main: #0a0512;
    --bg-card: rgba(20, 10, 32, 0.65);
    --bg-card-hover: rgba(28, 14, 45, 0.8);
    --border-color: rgba(141, 4, 244, 0.2);
    --border-color-hover: rgba(141, 4, 244, 0.4);
    
    --text-primary: #f3f0f7;
    --text-secondary: #a78bfa;
    --text-muted: #6b5a84;
    
    --color-purple: #8d04f4;
    --color-purple-glow: rgba(141, 4, 244, 0.35);
    --color-violet: #a78bfa;
    --color-emerald: #10b981;
    --color-emerald-glow: rgba(16, 185, 129, 0.3);
    --color-amber: #f59e0b;
    --color-amber-glow: rgba(245, 158, 11, 0.3);
    --color-red: #ef4444;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(141, 4, 244, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px var(--color-purple-glow);
}

/* AdSense/Ad placeholder styling */
.ad-slot {
    background: rgba(15, 7, 25, 0.4);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.ad-slot::before {
    content: "ADVERTISEMENT";
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}
.ad-slot-horizontal {
    width: 100%;
    max-height: 120px;
}

/* Containers & Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: rgba(10, 5, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition-normal);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.logo span {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-icon {
    font-size: 1.8rem;
    animation: hover-float 4s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-emerald);
    transition: var(--transition-fast);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Prices Bar */
.prices-bar {
    background: linear-gradient(90deg, rgba(20, 10, 32, 0.4), rgba(16, 185, 129, 0.03));
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 10px 0;
    font-size: 0.85rem;
}
.prices-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    align-items: center;
}
.price-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.price-value {
    font-weight: 600;
    color: #fff;
}
.price-time {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Hero Section */
.hero {
    padding: 64px 0 40px;
    text-align: center;
    position: relative;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.hero-title span {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}
.btn-primary {
    background: var(--color-purple);
    color: #fff;
    box-shadow: 0 4px 14px var(--color-purple-glow);
}
.btn-primary:hover {
    background: #9d1dfc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 4, 244, 0.5);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

/* Referral Card Banner */
.referral-banner {
    background: linear-gradient(135deg, rgba(141, 4, 244, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
}
.ref-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: #fff;
}
.ref-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.ref-action {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ref-code-input {
    background: rgba(10, 5, 18, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 16px;
    color: #fff;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    width: 170px;
    letter-spacing: 0.05em;
    cursor: default;
}
.copy-btn {
    background: var(--color-emerald);
    color: #fff;
    box-shadow: 0 4px 10px var(--color-emerald-glow);
}
.copy-btn:hover {
    background: #14d495;
    box-shadow: 0 6px 14px rgba(16, 185, 129, 0.5);
}

/* Calculator Section & Panels */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(10, 5, 18, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color var(--transition-normal);
}
.card:hover {
    border-color: var(--border-color-hover);
}
.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(141, 4, 244, 0.1);
    padding-bottom: 12px;
}

/* Form Controls */
.form-group {
    margin-bottom: 20px;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}
.form-row-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}
@media (max-width: 768px) {
    .form-row-4 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .form-row-4 {
        grid-template-columns: 1fr;
    }
}
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Styling native select, input, range */
select, input[type="text"], input[type="number"] {
    width: 100%;
    background: rgba(15, 7, 25, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}
select:focus, input:focus {
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 2px var(--color-emerald-glow);
}
select option {
    background: var(--bg-main);
    color: #fff;
}

/* Passive Mode Toggle styling */
.toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(141, 4, 244, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}
.toggle-wrapper:hover {
    background: rgba(141, 4, 244, 0.1);
}
.toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition-fast);
}
.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition-fast);
}
input[type="checkbox"]#passive {
    display: none;
}
input[type="checkbox"]#passive:checked + .toggle-switch {
    background: var(--color-emerald);
}
input[type="checkbox"]#passive:checked + .toggle-switch::after {
    left: 26px;
}

/* Range sliders */
.range-container {
    display: flex;
    align-items: center;
    gap: 16px;
}
input[type="range"] {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-emerald);
    cursor: pointer;
    box-shadow: 0 0 8px var(--color-emerald-glow);
    transition: var(--transition-fast);
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.range-value-display {
    min-width: 48px;
    text-align: right;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* Honey Pot Slot Items and Layout */
.visual-honey-pot-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 24px;
    background: rgba(141, 4, 244, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(141, 4, 244, 0.1);
}

.slots-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.honey-pot-header {
    display: block;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.05em;
}

.honey-pot-slot {
    background: rgba(10, 5, 18, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    transition: var(--transition-normal);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.honey-pot-slot:hover {
    transform: translateY(-2px);
    background: rgba(20, 10, 32, 0.85);
}

/* Slot state styling */
.honey-pot-slot.slot-empty {
    border: 1px dashed rgba(255, 255, 255, 0.15);
    opacity: 0.75;
}

.honey-pot-slot.slot-active {
    border-width: 1.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.honey-pot-slot.slot-color-yellow {
    border-color: var(--color-amber);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

.honey-pot-slot.slot-color-purple,
.honey-pot-slot.slot-color-blue {
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.35);
}

.honey-pot-slot.slot-color-red {
    border-color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.35);
}

.honey-pot-slot.slot-color-emerald,
.honey-pot-slot.slot-color-green {
    border-color: var(--color-emerald);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

/* Center Avatar styling */
.central-bee-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
}

.bee-hexagon-wrap {
    width: 130px;
    height: 150px;
    position: relative;
    filter: drop-shadow(0 0 15px var(--color-purple-glow));
    transition: var(--transition-normal);
}

.bee-hexagon-wrap:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 25px var(--color-emerald-glow));
}

/* Clip-path Hexagon border effect */
.bee-hexagon-wrap::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-emerald));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.bee-hexagon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 10, 32, 0.95), rgba(141, 4, 244, 0.2));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
}

.bee-hexagon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(28, 14, 45, 0.9);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.bee-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    background: rgba(141, 4, 244, 0.25);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 8px;
    text-shadow: 0 0 5px var(--color-purple-glow);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Responsiveness for Honey Pot slots */
@media (max-width: 600px) {
    .visual-honey-pot-layout {
        flex-direction: column;
        gap: 24px;
        padding: 16px;
    }
    .slots-column {
        width: 100%;
    }
}

/* Results Display Panel */
.results-card {
    background: linear-gradient(135deg, rgba(20, 10, 32, 0.8) 0%, rgba(10, 5, 18, 0.95) 100%);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 90px;
}
.earnings-display {
    background: rgba(141, 4, 244, 0.07);
    border: 1px solid rgba(141, 4, 244, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}
.earnings-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.earnings-main-value {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 15px rgba(141, 4, 244, 0.4);
    margin-bottom: 8px;
    word-break: break-all;
}
.earnings-conversions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}
.conversion-item {
    font-weight: 600;
    color: #fff;
}

/* Metrics Grid Inside Results */
.metrics-pill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.metric-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.metric-pill-label {
    color: var(--text-muted);
}
.metric-pill-val {
    font-weight: 700;
    color: #fff;
}
.metric-pill-val.emerald {
    color: var(--color-emerald);
}

.chart-wrapper {
    background: rgba(10, 5, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
}
.chart-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.chart-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}
select.chart-select-small {
    width: auto;
    padding: 4px 24px 4px 10px;
    font-size: 0.8rem;
}

/* Tables Section (Breakdown Tables) */
.breakdown-section {
    margin-bottom: 64px;
}
.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    overflow-x: auto;
    gap: 16px;
}
.tab-btn, .mode-tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: var(--transition-fast);
}
.tab-btn:hover, .mode-tab-btn:hover {
    color: var(--text-primary);
}
.tab-btn.active, .mode-tab-btn.active {
    color: var(--color-emerald);
}
.tab-btn.active::after, .mode-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-emerald);
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -2px 10px var(--color-emerald-glow);
}

.table-container {
    overflow-x: auto;
    background: rgba(20, 10, 32, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

table.breakdown-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}
table.breakdown-table th, table.breakdown-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
table.breakdown-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(15, 7, 25, 0.6);
    border-bottom: 1px solid var(--border-color);
}
table.breakdown-table tbody tr {
    cursor: pointer;
    transition: var(--transition-fast);
}
table.breakdown-table tbody tr:hover {
    background: rgba(141, 4, 244, 0.05);
}
table.breakdown-table tbody tr.selected {
    background: rgba(16, 185, 129, 0.08);
    border-left: 3px solid var(--color-emerald);
}
table.breakdown-table tbody tr.selected td {
    color: #fff;
    font-weight: 600;
}
.red {
    color: var(--color-red);
}

/* Accordion Info Guides */
.guides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}
.guides-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-content: start;
}
.guides-column .accordion-item {
    margin-bottom: 0;
}
@media (max-width: 1200px) {
    .guides-column {
        grid-template-columns: 1fr;
    }
    .guides-column .accordion-item {
        margin-bottom: 12px;
    }
}
@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}
.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.accordion-header {
    background: rgba(15, 7, 25, 0.3);
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition-fast);
}
.accordion-header:hover {
    background: rgba(15, 7, 25, 0.6);
    color: #fff;
}
.accordion-icon {
    font-size: 0.8rem;
    transition: transform var(--transition-normal);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(10, 5, 18, 0.2);
}
.accordion-content-inner {
    padding: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.accordion-item.active .accordion-content {
    max-height: 2000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.bullet-list {
    list-style: none;
    margin-top: 8px;
}
.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}
.bullet-list li::before {
    content: "🐝";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.85rem;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    background: rgba(10, 5, 18, 0.9);
    padding: 48px 0 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.footer-brand h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.footer-links h5 {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: var(--text-muted);
}
.footer-links a:hover {
    color: var(--text-secondary);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
}
.footer-bottom-links a:hover {
    color: var(--text-secondary);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 18, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}
.modal-overlay.active .modal-card {
    transform: scale(1);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(141, 4, 244, 0.1);
    padding-bottom: 12px;
}
.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
}
.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
.close-modal:hover {
    color: #fff;
}
.modal-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}
.modal-body h4 {
    margin: 16px 0 8px;
    color: #fff;
    font-family: var(--font-heading);
}
.modal-body p {
    margin-bottom: 12px;
}

/* Animations */
@keyframes hover-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}
