:root {
    --gold: #B8860B;
    --gold-light: #C9A84C;
    --gold-dark: #8B6914;
    --gold-dim: rgba(184, 134, 11, 0.85);
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-text-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728);
    --gold-btn: linear-gradient(135deg, #BF953F 0%, #D4AF37 25%, #F2D675 50%, #D4AF37 75%, #BF953F 100%);
    --gold-chip: linear-gradient(135deg, #BF953F, #D4AF37, #C9A84C);
    --bg: #000000;
    --surface: #1C1C1E;
    --surface-border: rgba(255, 255, 255, 0.12);
    --surface-bg: rgba(255, 255, 255, 0.08);
    --text: #FFFFFF;
    --text-secondary: #8E8E93;
    --divider: rgba(255, 255, 255, 0.1);
    --radius: 12px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.app {
    max-width: 480px;
    margin: 0 auto;
    padding-top: 15vh;
    padding-bottom: 40px;
}

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
}

.nav-bar h1 {
    font-size: 28px;
    font-weight: 700;
}

.header-back {
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.header-back:hover {
    color: #F5E6A3;
}

/* Liquid Gold Title */
.liquid-gold-title {
    position: relative;
    background:
        linear-gradient(
            110deg,
            #8B6914 0%,
            #BF953F 15%,
            #F5E6A3 30%,
            #FFFBE6 40%,
            #F5E6A3 50%,
            #D4AF37 60%,
            #BF953F 70%,
            #8B6914 85%,
            #BF953F 100%
        );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: liquidFlow 4s ease-in-out infinite;
    cursor: pointer;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.3));
    transition: filter 0.3s ease;
}

.liquid-gold-title:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
}

/* Info Slide Panel */
.info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.info-overlay.active {
    opacity: 1;
    visibility: visible;
}

.info-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #1C1C1E;
    z-index: 60;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.info-panel.active {
    transform: translateX(0);
}

.info-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-panel-title {
    font-size: 22px;
    font-weight: 700;
}

.info-panel-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.info-panel-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.info-panel-body {
    padding: 24px 20px;
    flex: 1;
    overflow-y: auto;
}

.info-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.slogan-text {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: 24px;
    font-style: italic;
    letter-spacing: 1px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.edit-btn {
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 16px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
}

.edit-btn:hover {
    background: rgba(184, 134, 11, 0.15);
}

/* Loading */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    gap: 16px;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--surface-border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Profile Content */
.profile-content {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Profile Header Card */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px;
    background: var(--surface-bg);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
}

.car-icon {
    color: var(--gold-light);
    width: 60px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(184, 134, 11, 0.3));
}

.car-icon svg {
    width: 100%;
    height: 100%;
}

.profile-name {
    font-size: 16px;
    font-weight: 600;
}

.profile-email {
    font-size: 13px;
    color: var(--text-secondary);
}

.edit-fields {
    display: flex;
    gap: 8px;
    width: 100%;
}

.edit-fields input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--surface-border);
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
}

/* Sections */
.section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0;
    width: 100%;
    text-align: left;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon {
    font-size: 16px;
}

.chevron {
    font-size: 18px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.chevron.expanded {
    transform: rotate(90deg);
}

.license-badges, .pref-badges, .history-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Section Body */
.section-body {
    display: none;
    padding: 16px;
    background: var(--surface-bg);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
}

.section-body.expanded {
    display: block;
}

/* Rows */
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.label {
    font-size: 14px;
    color: var(--text-secondary);
}

.value {
    font-size: 15px;
    text-align: right;
}

.edit-input {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--surface-border);
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    text-align: right;
    max-width: 200px;
}

.divider {
    height: 1px;
    background: var(--divider);
    margin: 8px 0;
}

/* Address */
.address-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-block .value {
    text-align: left;
    white-space: pre-line;
    line-height: 1.5;
}

.edit-address {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edit-address input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--surface-border);
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
}

.row-inputs {
    display: flex;
    gap: 8px;
}

.row-inputs input {
    flex: 1;
}

.row-inputs .short {
    max-width: 80px;
}

/* Badges */
.badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.badge-expired {
    background: #FF3B30;
    color: white;
}

.badge-count {
    background: var(--gold-btn);
    color: black;
    font-size: 11px;
}

.default-badge {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 13px;
}

/* Preferences */
.pref-section {
    margin-bottom: 12px;
}

.pref-section:last-child {
    margin-bottom: 0;
}

.pref-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.pref-chips, .chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    font-size: 12px;
    font-weight: 600;
    color: black;
    background: var(--gold-chip);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.no-prefs {
    font-size: 14px;
    color: var(--text-secondary);
}

.edit-prefs-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: var(--gold-btn);
    color: black;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.edit-prefs-btn:hover {
    opacity: 0.9;
}

/* Filter Editor Modal */
.filter-modal {
    background: #000;
}

.filter-modal .modal-content {
    background: #000;
}

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

.filter-modal-header h2 {
    background: linear-gradient(110deg, #8B6914 0%, #BF953F 15%, #F5E6A3 30%, #FFFBE6 40%, #F5E6A3 50%, #D4AF37 60%, #BF953F 70%, #8B6914 85%, #BF953F 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: liquidFlow 4s ease-in-out infinite;
    font-size: 17px;
}

.filter-modal-header .modal-close {
    color: var(--gold-light);
    font-weight: 600;
}

.filter-save-btn {
    color: var(--gold-light) !important;
    font-weight: 700 !important;
}

.filter-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    background: #000;
}

.filter-section {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip.selected {
    background: var(--gold-chip);
    color: black;
    border-color: transparent;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.filter-chip:active {
    transform: scale(0.95);
}

/* Rental History */
.rental-count {
    font-size: 12px;
    color: var(--text-secondary);
}

.rental-item {
    padding: 12px 0;
}

.rental-item + .rental-item {
    border-top: 1px solid var(--divider);
}

.rental-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.rental-vehicle {
    font-size: 15px;
    font-weight: 500;
}

.status-badge {
    font-size: 11px;
    font-weight: 600;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
}

.status-completed { background: #34C759; }
.status-active { background: #007AFF; }
.status-upcoming { background: #FF9500; }
.status-cancelled { background: #FF3B30; }

.rental-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.rental-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.rental-cost {
    font-size: 14px;
    font-weight: 600;
}

/* Search Cars Button — Liquid Gold */
.search-cars-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background:
        linear-gradient(
            110deg,
            #8B6914 0%,
            #BF953F 15%,
            #F5E6A3 30%,
            #FFFBE6 40%,
            #F5E6A3 50%,
            #D4AF37 60%,
            #BF953F 70%,
            #8B6914 85%,
            #BF953F 100%
        );
    background-size: 300% 100%;
    color: #1a1000;
    border: none;
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
    box-shadow:
        0 2px 8px rgba(184, 134, 11, 0.4),
        0 0 20px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    animation: liquidFlow 4s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

@keyframes liquidFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.search-cars-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        rgba(255, 251, 230, 0.25),
        rgba(255, 255, 255, 0.08),
        transparent
    );
    animation: sheen 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sheen {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.search-cars-btn::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    right: 4px;
    height: 40%;
    background: linear-gradient(
        180deg,
        rgba(255, 251, 230, 0.35) 0%,
        rgba(255, 251, 230, 0.1) 60%,
        transparent 100%
    );
    border-radius: var(--radius) var(--radius) 50% 50%;
    pointer-events: none;
}

.search-cars-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 4px 16px rgba(184, 134, 11, 0.5),
        0 0 30px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.search-cars-btn:active {
    transform: translateY(0);
    box-shadow:
        0 1px 4px rgba(184, 134, 11, 0.3),
        inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.search-cars-btn svg {
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.3));
}

/* Profile Number */
.profile-number {
    text-align: center;
    padding-top: 8px;
}

.profile-number .label {
    display: block;
    font-size: 11px;
    margin-top: 12px;
}

.profile-number .number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Edit Bar */
.edit-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    margin-top: 20px;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.cancel-btn {
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 16px;
    cursor: pointer;
    padding: 8px 16px;
}

.save-btn {
    background: var(--gold-btn);
    color: black;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 8px;
    cursor: pointer;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.save-btn:hover {
    opacity: 0.9;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 100;
    overflow-y: auto;
}

.modal-content {
    max-width: 480px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: #1C1C1E;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    font-size: 17px;
    color: #fff;
}

.modal-close {
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 16px;
    cursor: pointer;
}

.pref-banner {
    padding: 12px 16px;
    background: #F8F8F8;
    border-bottom: 1px solid #E5E5EA;
}

.pref-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.pref-banner-header button {
    background: none;
    border: none;
    color: #8E8E93;
    font-size: 16px;
    cursor: pointer;
}

.pref-banner .chip {
    font-size: 11px;
    background: var(--gold-dim);
}

.whitelabel-container {
    flex: 1;
    background: #F2F2F7;
}

.loading-msg {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 14px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Login Screen */
.login-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 0 16px;
}

.login-card {
    width: 100%;
    max-width: 360px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.login-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--surface-border);
    background: var(--surface);
    color: var(--text);
    font-size: 16px;
    text-align: center;
    outline: none;
}

.login-input:focus {
    border-color: var(--gold-light);
}

.login-input::placeholder {
    color: var(--text-secondary);
}

.login-btn {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
}

.login-error {
    color: #FF3B30;
    font-size: 13px;
    margin-top: 4px;
}

.login-create-link {
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 16px;
}

.gold-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
}

.gold-link:hover {
    text-decoration: underline;
}

/* Profile Created Overlay */
#createdOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.created-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    max-width: 360px;
    width: 100%;
}

.profile-number-display {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0;
}

/* Email Confirmed Banner */
.confirmed-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1a3a1a, #2d5a2d);
    color: #34C759;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    z-index: 300;
    transition: opacity 0.6s ease;
}

.confirmed-banner.fade-out {
    opacity: 0;
}

/* Rental History */
.rental-booking-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

.rental-notes {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-style: italic;
}

.add-booking-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: transparent;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: var(--radius);
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.add-booking-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.delete-rental-btn {
    margin-top: 6px;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 6px;
    color: #FF3B30;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.delete-rental-btn:hover {
    background: rgba(255, 59, 48, 0.1);
}

.add-booking-body {
    padding: 16px 20px;
    overflow-y: auto;
    max-height: calc(100vh - 56px);
}

.booking-field {
    margin-bottom: 14px;
    flex: 1;
}

.booking-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--surface-bg);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    -webkit-appearance: none;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.booking-field-row {
    display: flex;
    gap: 12px;
}

/* Influenced By */
.influenced-link { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(212,175,55,0.35); text-decoration: none; cursor: pointer; transition: color 0.3s; z-index: 10; }
.influenced-link:hover { color: rgba(212,175,55,0.7); }
.influenced-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 9000; opacity: 0; pointer-events: none; transition: opacity 0.4s; display: flex; align-items: center; justify-content: center; }
.influenced-overlay.active { opacity: 1; pointer-events: auto; }
.influenced-modal { background: #1C1C1E; border: 1px solid rgba(212,175,55,0.25); border-radius: 16px; padding: 36px 32px; max-width: 380px; width: 90%; text-align: center; transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.influenced-overlay.active .influenced-modal { transform: scale(1); }
.influenced-modal h3 { font-size: 16px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; background: linear-gradient(110deg,#8B6914 0%,#BF953F 15%,#F5E6A3 30%,#FFFBE6 40%,#F5E6A3 50%,#D4AF37 60%,#BF953F 70%,#8B6914 85%,#BF953F 100%); background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: influencedFlow 4s ease-in-out infinite; margin-bottom: 20px; }
@keyframes influencedFlow { 0% { background-position: 100% 50%; } 50% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.influenced-modal p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.influenced-modal .company-name { font-weight: 700; color: rgba(212,175,55,0.9); }
.influenced-modal .subscribers { font-size: 13px; color: rgba(212,175,55,0.6); font-weight: 600; letter-spacing: 1px; margin: 16px 0; }
.influenced-modal a.email-link { color: rgba(212,175,55,0.8); text-decoration: none; font-size: 13px; letter-spacing: 1px; transition: color 0.2s; }
.influenced-modal a.email-link:hover { color: #D4AF37; }
.influenced-close { margin-top: 24px; background: none; border: 1px solid rgba(212,175,55,0.3); color: rgba(212,175,55,0.7); padding: 8px 24px; border-radius: 8px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.influenced-close:hover { border-color: rgba(212,175,55,0.6); color: #D4AF37; }

/* Responsive */
@media (max-width: 480px) {
    .app {
        padding-bottom: 80px;
    }

    .nav-bar h1 {
        font-size: 24px;
    }
}
