/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, var(--light) 100%);
    position: relative;
    overflow-y: auto;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.login-back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s;
    z-index: 10;
}

.login-back-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    transform: translateX(-5px);
}

.login-container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
    filter: blur(60px);
}

.login-container::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    border-radius: 50%;
    animation: pulseGlow 5s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.login-card {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    min-width: 400px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3), 0 0 80px rgba(255, 215, 0, 0.1);
    position: relative;
    z-index: 1;
    animation: slideIn 0.5s ease-out;
    flex-shrink: 0;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.login-header .logo .coin-logo {
    width: 3rem;
    height: 3rem;
    animation: coinGlow 3s ease-in-out infinite;
}

.login-header .logo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #FFAA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 10px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-form .form-group label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-form .form-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 15px 50px 15px 15px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0.7;
    z-index: 10;
}

.password-toggle:hover {
    opacity: 1;
    transform: scale(1.1);
}

.password-toggle:active {
    transform: scale(0.95);
}

.password-toggle:focus {
    outline: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.forgot-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.login-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.login-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: var(--text-muted);
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 215, 0, 0.3);
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 12px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.register-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
}

.register-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.register-link a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Floating Background Elements */
.login-bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-coin {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    filter: blur(1px);
    animation: floatAround 20s ease-in-out infinite;
}

.coin-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.coin-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.coin-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.coin-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 32s;
}

.coin-5 {
    top: 50%;
    left: 3%;
    animation-delay: 3s;
    animation-duration: 26s;
}

.coin-6 {
    top: 60%;
    right: 5%;
    animation-delay: 5s;
    animation-duration: 29s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, -60px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(-40px, 20px) rotate(270deg) scale(1.05);
    }
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotateFeature 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-item:hover::before {
    opacity: 1;
}

@keyframes rotateFeature {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    animation: featureIconPulse 2s ease-in-out infinite;
}

@keyframes featureIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.feature-item h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
    flex-shrink: 0;
    min-width: 0;
    overflow: visible;
}

.user-menu-dropdown {
    position: relative;
    display: inline-block;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 0;
}

.user-menu-trigger:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.user-menu-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.user-menu-username {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text);
}

.user-menu-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.user-menu-dropdown.active .user-menu-arrow {
    transform: rotate(180deg);
}

.user-menu-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 200px;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 8px;
    animation: dropdownSlide 0.3s ease;
}

.user-menu-dropdown.active .user-menu-dropdown-content {
    display: block;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-menu-fullname {
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4px;
    word-break: break-word;
    white-space: normal;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: left;
}

.user-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.user-menu-item.logout-btn {
    color: #ef4444;
}

.user-menu-item.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.menu-item-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.menu-item-text {
    flex: 1;
}

.user-menu .username {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.logout-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

.boost-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 4px;
    margin-left: 4px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.boost-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    transition: left 0.5s;
}

.boost-counter:hover::before {
    left: 100%;
}

.boost-counter:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.25));
    border-color: rgba(16, 185, 129, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.boost-counter:active {
    transform: translateY(0);
}

.boost-counter.boost-low {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
    border-color: rgba(239, 68, 68, 0.4);
    animation: boostPulse 2s ease-in-out infinite;
}

.boost-counter.boost-low:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(220, 38, 38, 0.25));
    border-color: rgba(239, 68, 68, 0.6);
}

@keyframes boostPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

.boost-counter-icon {
    font-size: 1.3rem;
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.boost-counter-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.boost-counter-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.boost-counter.boost-low .boost-counter-value {
    color: #ef4444;
}

.boost-counter-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .boost-counter {
        padding: 6px 10px;
        gap: 6px;
        margin-right: 5px;
    }
    
    .boost-counter-icon {
        font-size: 1.1rem;
    }
    
    .boost-counter-value {
        font-size: 0.95rem;
    }
    
    .boost-counter-label {
        font-size: 0.65rem;
    }
}

.user-menu-logged-in {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.user-menu-logged-in .username {
    color: var(--text);
}

.logout-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.logout-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.login-link {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Welcome Popup */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.welcome-popup.show {
    opacity: 1;
}

.welcome-popup-content {
    background: linear-gradient(135deg, var(--dark), var(--light));
    border: 3px solid var(--primary);
    border-radius: 25px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.welcome-popup.show .welcome-popup-content {
    transform: scale(1) translateY(0);
}

.welcome-popup-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.welcome-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
    animation: coinGlow 3s ease-in-out infinite;
}

.welcome-popup-header h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.close-popup:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.welcome-popup-body {
    text-align: center;
}

.welcome-message {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.welcome-message strong {
    color: var(--primary);
    font-size: 1.3rem;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-emoji {
    font-size: 1.8rem;
    width: 40px;
    text-align: center;
}

.welcome-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.welcome-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.welcome-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.welcome-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.welcome-btn.secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.welcome-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

:root {
    --primary: #FFD700;
    --secondary: #FF6B9D;
    --accent: #00D4FF;
    --dark: #0A0E27;
    --darker: #050710;
    --light: #1A1F3A;
    --text: #FFFFFF;
    --text-muted: #B0B8D0;
    --success: #00FF88;
    --danger: #FF4444;
    --warning: #FFAA00;
    --s-tier: #FF00FF;
    --a-tier: #00FF00;
    --b-tier: #FFFF00;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(16, 23, 41, 0.95));
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 40px;
    z-index: 1000;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.header .container {
    padding: 15px 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    overflow: visible;
    min-width: 0;
}

.header-content .logo {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: pointer;
}

.header-stats-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.header-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    flex-shrink: 1;
    min-width: 0;
}

.header-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-stat-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.25);
}

.header-stat-icon {
    font-size: 0.85rem;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.3));
    flex-shrink: 0;
}

.header-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.header-stat-value {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    line-height: 1;
}

.header-stat-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    line-height: 1;
}

.nav {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    overflow: visible;
}

.coin-logo {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 9999 !important;
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    border-radius: 50% !important;
    font-size: 30px !important;
    color: white !important;
    font-weight: bold !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8) !important;
}

@keyframes coinGlow {
    0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }
    50% { transform: scale(1.1) rotate(5deg); filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)); }
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.5px;
}

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

.nav {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: visible;
}

.nav-link {
    color: #E0E6F0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    border: 1px solid transparent;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 170, 0, 0.1));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 170, 0, 0.15));
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link.active::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 170, 0, 0.2));
}

/* Ad Banner */
.ad-banner {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    backdrop-filter: blur(10px);
    padding: 15px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Yellow lines only within container */
.ad-banner .container {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: -15px;
    margin-bottom: -15px;
}

.ad-banner.premium {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    border-color: var(--primary);
    isolation: isolate; /* Isolate background */
}

/* Sticky bottom ad */
.sticky-bottom-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-bottom-ad .container {
    padding-top: 12px;
    margin-top: -12px;
}

.sticky-bottom-ad .ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.sticky-bottom-ad .ad-cta {
    white-space: nowrap;
}

/* Add padding to body when sticky ad is visible */
body:has(#stickyBottomAd[style*="display: block"]) {
    padding-bottom: 70px;
}

/* Ensure ad banner background doesn't affect entire page */
.ad-banner.premium.split-banner {
    background: transparent;
    isolation: isolate;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Ensure ads don't block floating widget - ads should be below widget */
.ad-content.ad-half,
.ad-banner.premium.split-banner,
.ad-banner.premium {
    z-index: 1 !important;
    position: relative;
}

/* Remove global ::before for split banner */
.ad-banner.premium.split-banner::before {
    display: none;
}

/* Add background only to individual ad halves */
.ad-content.ad-half {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.ad-content.ad-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: slide 20s linear infinite;
    z-index: 0;
}

/* Keep ::before for non-split banners */
.ad-banner:not(.split-banner)::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.ad-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ad-content.ad-half {
    flex-direction: column;
    text-align: center;
    padding: 0;
    border-radius: 0;
    border: none;
    width: 100%;
    height: 100%;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#topAdLeft,
#topAdRight {
    min-height: 200px;
    position: relative;
}

.ad-content.ad-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    filter: none !important;
    -webkit-filter: none !important;
    min-height: 200px;
}

.ad-content.ad-half > *:not(img) {
    position: relative;
    z-index: 1;
}

.split-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
    z-index: 1;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: -15px;
    margin-bottom: -15px;
    min-height: 200px;
}

/* Ensure each half is truly separate */
.split-banner .container > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .split-banner .container {
        grid-template-columns: 1fr;
    }
}

.ad-badge {
    background: var(--dark);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ad-content p {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
}

.ad-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.ad-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(16, 23, 41, 0.95), rgba(10, 14, 39, 0.98));
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 170, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '🚀';
    position: absolute;
    font-size: 8rem;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), #FFAA00, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Marketing Banner */
.marketing-banner {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    padding: 35px;
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 170, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(80px) scale(0.85);
    animation: flyInMarketing 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.5s;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

@keyframes flyInMarketing {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.85) rotateX(15deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.05) rotateX(0deg);
    }
    70% {
        transform: translateY(5px) scale(0.98) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.marketing-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
    min-width: 200px;
}

.marketing-stat:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.marketing-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.marketing-info {
    display: flex;
    flex-direction: column;
}

.marketing-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #FFAA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.marketing-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

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

/* Search Section */
.search-section {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    transition: all 0.3s;
}

.search-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.search-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1rem;
    padding: 10px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.search-results {
    max-width: 800px;
    margin: 20px auto 0;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.search-result-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

.search-result-info {
    flex: 1;
}

.search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.search-result-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.search-result-symbol {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.search-result-chain {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.search-result-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.search-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.search-metric-label {
    color: var(--text-muted);
    margin-right: 8px;
}

.search-metric-value {
    color: var(--primary);
    font-weight: 600;
}

.search-result-price {
    text-align: right;
    min-width: 120px;
}

.search-result-price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.search-result-price-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.search-result-price-change.positive {
    color: var(--success);
}

.search-result-price-change.negative {
    color: var(--danger);
}

.search-no-results {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

/* Native Ad Banners - Clean, Integrated Ads */
.native-ad-banner {
    margin: 30px 0;
    position: relative;
}

.native-ad-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 170, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.native-ad-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.native-ad-content:hover::before {
    left: 100%;
}

.native-ad-content:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 170, 0, 0.08));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.native-ad-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #FFAA00);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.native-ad-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.native-ad-text {
    flex: 1;
    min-width: 250px;
}

.native-ad-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.native-ad-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.native-ad-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #FFAA00);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.native-ad-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.native-ad-button:hover::before {
    left: 100%;
}

.native-ad-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .native-ad-main {
        flex-direction: column;
        text-align: center;
    }
    
    .native-ad-button {
        width: 100%;
        justify-content: center;
    }
    
    .native-ad-text {
        min-width: 100%;
    }
}

/* Legacy ad-box styles - kept for compatibility */
.ad-box {
    background: rgba(255, 215, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    width: 160px;
    text-align: center;
    transition: all 0.3s;
}

.ad-box:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.ad-label {
    display: block;
    background: var(--primary);
    color: var(--dark);
    padding: 5px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ad-box p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.ad-box small {
    color: var(--text-muted);
    font-size: 0.7rem;
    display: block;
    margin-top: 8px;
}

.ad-box-link {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 6px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s;
}

.ad-box-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
}

.ad-horizontal-link {
    display: inline-block;
    margin-left: 15px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.ad-horizontal-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Tokens Section */
.tokens-section {
    padding: 80px 20px;
    position: relative;
}

.tokens-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(16, 23, 41, 0.95), transparent);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(16, 23, 41, 0.8), rgba(10, 14, 39, 0.9));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary), #FFAA00, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

.tokens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 30px;
    margin-bottom: 40px;
}

.pagination-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
}

.pagination-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.pagination-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--primary), rgba(255, 215, 0, 0.8));
    border-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-dots {
    color: var(--text-muted);
    padding: 0 5px;
    font-weight: 700;
}

.token-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.token-card:hover::before {
    left: 100%;
}

.token-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.token-vote-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.boost-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 8px;
    color: #10b981;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.boost-btn:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.3));
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.boost-votes-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.boost-votes-link:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.boost-icon {
    font-size: 0.9rem;
    animation: boostPulse 2s ease-in-out infinite;
}

@keyframes boostPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
    }
}

.boost-text {
    letter-spacing: 0.3px;
}

.vote-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.vote-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.vote-btn:disabled,
.vote-btn.voted {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.vote-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.vote-icon {
    font-size: 1.2rem;
}

.boost-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
}

.boost-count span:first-child {
    font-size: 1.2rem;
}

/* Custom Modal (for Price Alerts, Referral, etc.) */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal .modal-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(139, 92, 246, 0.3);
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    margin: 20px;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.custom-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.custom-modal .modal-header h2 {
    margin: 0;
    color: #8b5cf6;
    font-size: 1.5rem;
    font-weight: 800;
}

.custom-modal .modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
}

.custom-modal .modal-close:hover {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    transform: rotate(90deg);
}

.custom-modal .modal-body {
    padding: 25px;
}

@media (max-width: 768px) {
    .custom-modal .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .custom-modal .modal-header h2 {
        font-size: 1.3rem;
    }
}

/* Boost Amount Modal */
.boost-amount-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: boostModalFadeIn 0.3s ease;
    opacity: 1;
}

.boost-amount-modal.closing {
    animation: boostModalFadeOut 0.3s ease;
}

@keyframes boostModalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes boostModalFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.boost-amount-modal-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(16, 185, 129, 0.3);
    animation: boostModalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.boost-amount-modal.closing .boost-amount-modal-content {
    animation: boostModalSlideOut 0.3s ease;
}

@keyframes boostModalSlideIn {
    from {
        transform: scale(0.8) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes boostModalSlideOut {
    from {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    to {
        transform: scale(0.8) translateY(-20px);
        opacity: 0;
    }
}

.boost-amount-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.boost-amount-modal-header h3 {
    margin: 0;
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 800;
}

.boost-amount-modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
}

.boost-amount-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: rotate(90deg);
}

.boost-amount-modal-body {
    padding: 25px;
}

.boost-amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.boost-amount-btn {
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    color: #10b981;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.boost-amount-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.25));
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.boost-amount-btn:active:not(:disabled) {
    transform: translateY(0);
}

.boost-amount-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.boost-amount-custom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.boost-amount-custom input[type="number"] {
    font-family: 'Inter', sans-serif;
}

.boost-amount-custom input[type="number"]:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.boost-amount-apply-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.boost-amount-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.boost-amount-apply-btn:active {
    transform: translateY(0);
}

.boost-amount-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    justify-content: flex-end;
}

.boost-amount-cancel-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.boost-amount-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.boost-amount-cancel-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .boost-amount-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .boost-amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .boost-amount-modal-header h3 {
        font-size: 1.3rem;
    }
}

.token-card.premium {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.token-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.token-name h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

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

.chain-badge {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-badge {
    background: linear-gradient(135deg, var(--primary), #FFAA00);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.token-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.metric-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.metric-change.positive {
    color: var(--success);
}

.metric-change.negative {
    color: var(--danger);
}

/* Ad Space */
.ad-space {
    padding: 40px 20px;
}

.ad-box-horizontal {
    background: rgba(255, 215, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    transition: all 0.3s;
}

.ad-box-horizontal:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.ad-box-horizontal .ad-label {
    display: inline-block;
    margin: 0;
}

.ad-box-horizontal p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

/* Callers Section */
.callers-preview,
.callers-section {
    padding: 60px 20px;
}

.callers-grid,
.callers-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
}

/* New Caller Card Style - Professional & Clean */
.caller-card-new-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.caller-avatar-outer {
    position: relative;
    z-index: 2;
    margin-bottom: -35px;
}

.caller-avatar-circle-outer {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 3px solid var(--primary);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4), 0 0 0 4px rgba(10, 14, 39, 0.8);
    transition: all 0.3s ease;
}

.caller-card-new-wrapper:hover .caller-avatar-circle-outer {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), 0 0 0 4px rgba(10, 14, 39, 0.8);
    border-color: var(--accent);
}

.caller-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
    padding: 50px 18px 20px 18px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 380px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.caller-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.3);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.caller-name-new {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.2px;
}

.caller-badge-btn {
    background: #8B5CF6;
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    padding: 5px 14px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 6px;
    cursor: default;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.caller-username-new {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.caller-rating-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    width: 100%;
}

.rating-stars-display-new {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.rating-stars-display-new .star {
    font-size: 0.95rem;
}

.rating-text-new {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.rate-caller-btn-new {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    width: 100%;
    max-width: 140px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.rate-caller-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
}

.caller-comments-preview-new {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.caller-comments-preview-new strong {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-preview-new {
    font-size: 0.75rem;
    color: var(--text);
    margin: 5px 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: left;
    line-height: 1.4;
    border-left: 3px solid var(--primary);
}

.comment-preview-new .star {
    font-size: 0.7rem;
    margin-right: 4px;
}

.caller-socials-new {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    width: 100%;
}

.social-link-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 215, 0, 0.1);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link-new:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.view-reviews-btn-new {
    background: rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
    border: 1.5px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    width: 100%;
    max-width: 160px;
    font-family: 'Inter', sans-serif;
}

.view-reviews-btn-new:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: #8B5CF6;
    transform: translateY(-1px);
}

.caller-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
    position: relative;
}

.caller-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.caller-card.premium {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.caller-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.caller-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.caller-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tier-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.tier-badge.s-tier {
    background: linear-gradient(135deg, var(--s-tier), #FF00AA);
    color: var(--dark);
}

.tier-badge.a-tier {
    background: linear-gradient(135deg, var(--a-tier), #00AA00);
    color: var(--dark);
}

.tier-badge.b-tier {
    background: linear-gradient(135deg, var(--b-tier), #FFAA00);
    color: var(--dark);
}

.caller-rating-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.caller-rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.rating-stars-display {
    display: flex;
    gap: 2px;
}

.rating-stars-display .star {
    font-size: 1.2rem;
}

.rating-stars-display .star.empty {
    opacity: 0.3;
}

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

.rate-caller-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.rate-caller-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.caller-comments-preview {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.caller-comments-preview strong {
    color: var(--primary);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.comment-preview {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 5px 0;
    padding: 5px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
}

.comment-preview .star {
    font-size: 0.9rem;
    margin-right: 5px;
}

/* Rating Modal */
.rating-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.rating-modal-content {
    background: linear-gradient(135deg, var(--dark), var(--light));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.rating-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.rating-modal-header h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-modal:hover {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(90deg);
}

.rating-modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-stars-input {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.rating-star-input {
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.rating-star-input:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
}

.rating-star-input.selected {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.rating-selected-text {
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    min-height: 25px;
}

.rating-comment-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
}

.rating-comment-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.caller-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.view-all-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

/* Coin Detail Page */
.coin-detail {
    padding: 40px 20px;
}

.back-btn {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.back-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.coin-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid var(--primary);
}

.coin-icon {
    font-size: 4rem;
}

.coin-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.coin-symbol {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.metric-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.coin-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

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

.detail-value {
    color: var(--text);
    font-weight: 600;
    word-break: break-all;
    text-align: right;
    flex: 1;
    margin: 0 10px;
}

.copy-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 5px;
    padding: 5px 10px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.link-btn {
    display: block;
    padding: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.link-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.ad-space-detail {
    margin-top: 40px;
}

/* Footer */
.footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 2px solid var(--primary);
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    margin-top: 10px;
}

.footer-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.footer-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-feature-item:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-feature-icon {
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    padding-top: 20px;
    color: var(--text-muted);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

.footer-divider {
    color: var(--text-muted);
    opacity: 0.5;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 8px;
}

.footer-contact-link:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.footer-contact-icon {
    font-size: 1.2rem;
}

/* Legal Pages */
.legal-section {
    padding: 40px 20px 60px;
    min-height: 80vh;
    padding-top: 40px;
}

.legal-section .container {
    position: relative;
}

.legal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.legal-back-btn span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.legal-back-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.legal-back-btn:hover span {
    transform: translateX(-3px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 40px;
}

.legal-content h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-content h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.legal-content h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--accent);
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content strong {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        padding: 12px 15px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-stats-nav {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        border: none;
    }

    .header-stats {
        width: 100%;
        justify-content: space-between;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        padding-bottom: 15px;
    }

    .header-stat-item {
        flex: 1;
        justify-content: center;
        padding: 4px 6px;
    }

    .header-stat-value {
        font-size: 0.65rem;
    }

    .header-stat-label {
        font-size: 0.5rem;
    }

    .header-stat-icon {
        font-size: 0.8rem;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .login-wrapper {
        gap: 30px;
    }

    .login-card {
        min-width: auto;
        width: 100%;
        padding: 40px 30px;
    }

    .floating-coin {
        font-size: 2rem;
    }

    .wallets-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .header-stat-item {
        flex: 1;
        justify-content: center;
        padding: 6px 8px;
        min-width: 0;
    }

    .header-stat-value {
        font-size: 0.75rem;
    }

    .header-stat-label {
        font-size: 0.6rem;
    }

    .header-stat-icon {
        font-size: 0.9rem;
    }
    
    .welcome-popup-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .welcome-cta {
        flex-direction: column;
    }
    
    .welcome-btn {
        width: 100%;
    }
    
    .nav-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .nav {
        gap: 4px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .search-container {
        flex-direction: column;
        padding: 15px;
    }
    
    .search-input {
        width: 100%;
        margin: 10px 0;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .search-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .search-result-metrics {
        grid-template-columns: 1fr;
    }
    
    .search-result-price {
        text-align: left;
        width: 100%;
        min-width: auto;
    }
    
    .token-vote-section {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .vote-btn {
        width: 100%;
    }
    
    .listing-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .admin-form {
        gap: 15px;
    }
    
    .tokens-grid,
    .callers-grid,
    .callers-grid-full {
        grid-template-columns: 1fr;
    }
    
    .coin-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .coin-icon {
        font-size: 3rem;
    }
    
    .coin-info h1 {
        font-size: 1.8rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .metric-card {
        padding: 15px;
    }
    
    .metric-value {
        font-size: 1.3rem;
    }
    
    .coin-details-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ad-banner .ad-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .ad-banner p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .token-card,
    .caller-card {
        padding: 15px;
    }
    
    .token-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .caller-socials {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .filter-tabs {
        flex-direction: column;
    }
    
    .filter-tab {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .search-input {
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Admin Styles */
.admin-section {
    padding: 60px 20px;
}

.admin-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.admin-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 12px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.form-group select {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(0, 212, 255, 0.2));
    border-color: var(--primary);
    color: var(--text);
    font-weight: 600;
}

.form-group select:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(0, 212, 255, 0.3));
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.form-group select option {
    background: var(--dark);
    color: var(--text);
    padding: 10px;
    font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.form-group small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.user-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--primary);
}

.autocomplete-item:active {
    background: rgba(255, 215, 0, 0.15);
    transform: scale(0.98);
}

.user-autocomplete::-webkit-scrollbar {
    width: 8px;
}

.user-autocomplete::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.user-autocomplete::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.user-autocomplete::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

.admin-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.admin-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
}

.admin-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.admin-btn.danger {
    background: var(--danger);
    color: var(--text);
}

.admin-btn.danger:hover {
    background: #ff6666;
    transform: translateY(-2px);
}

.listings-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.listing-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.listing-info {
    flex: 1;
}

.listing-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.listing-address code {
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: var(--primary);
    word-break: break-all;
}

.copy-small-btn {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--primary);
    border-radius: 5px;
    padding: 4px 8px;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.copy-small-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.listing-chain {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.listing-notes {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.listing-duration {
    color: var(--primary);
    font-size: 0.9rem;
    margin: 5px 0;
    font-weight: 600;
}

.listing-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 3px 0;
}

.listing-date.expired-text {
    color: var(--danger);
}

.listing-item.expired {
    opacity: 0.6;
    border-color: var(--danger);
}

.expired-badge {
    background: var(--danger);
    color: var(--text);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 10px;
}

.no-listings {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.info-card {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent);
}

.instructions-list {
    color: var(--text);
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 20px;
}

.instructions-list li {
    margin-bottom: 10px;
}

.code-example {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.code-example pre {
    margin: 10px 0 0 0;
    color: var(--text);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    overflow-x: auto;
}

.code-example code {
    color: var(--primary);
}

.admin-link {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--primary);
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 10px;
}

.admin-tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.admin-tab:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
}

.admin-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Admin Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.admin-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.admin-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Payment Page Styles */
.payment-section {
    padding: 60px 20px;
    min-height: 80vh;
}

.payment-header {
    text-align: center;
    margin-bottom: 50px;
}

.payment-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #FFAA00, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.payment-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.payment-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.payment-plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.payment-plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.payment-plan-card.featured {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.payment-plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.plan-badge.premium {
    background: linear-gradient(135deg, var(--primary), #FFAA00);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.payment-plan-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.plan-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 25px 0;
}

.price-crypto {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-usd {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    padding: 0;
}

.plan-features li {
    padding: 12px 0;
    color: var(--text);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-btn {
    width: 100%;
    padding: 18px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.plan-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.plan-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
}

.plan-btn.primary:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.payment-form-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.payment-form-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.payment-summary {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text);
    font-size: 1rem;
}

.summary-row.summary-total {
    border-top: 2px solid var(--primary);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.3rem;
    font-weight: 800;
}

.summary-total span:last-child {
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    transition: all 0.3s;
    min-height: 80px;
}

.form-group small {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

.turnstile-widget {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.turnstile-widget .cf-turnstile {
    transform: scale(0.9);
}

.recaptcha-info {
    text-align: center;
    padding: 12px 16px;
    background: rgba(240, 165, 15, 0.1);
    border: 1px solid rgba(240, 165, 15, 0.3);
    border-radius: 8px;
    margin-bottom: 20px;
}

.recaptcha-info small {
    color: rgba(240, 165, 15, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
}

.wallet-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.wallet-btn {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 600;
}

.wallet-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.wallet-info {
    display: none;
    margin-top: 15px;
    padding: 12px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    border: 1px solid #8b5cf6;
    font-size: 0.9rem;
    color: var(--text);
}

.payment-address-box {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 8px;
}

.payment-address-box code {
    flex: 1;
    font-size: 0.85rem;
    word-break: break-all;
    color: var(--text);
    font-family: 'Courier New', monospace;
}

.copy-btn {
    padding: 8px 16px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.payment-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cancel-btn, .paid-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    min-width: 120px;
}

.cancel-btn:hover, .paid-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.payment-actions .plan-btn {
    flex: 2;
    margin: 0;
    min-width: 150px;
}

/* Payment Tabs */
.payment-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(16, 23, 41, 0.6), rgba(10, 14, 39, 0.8));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.payment-tab {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #E0E6F0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.payment-tab span:first-child {
    font-size: 1.3rem;
}

.payment-tab:hover {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.payment-tab.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 170, 0, 0.2));
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 
        0 4px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Votes Info Banner */
.votes-info-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(16, 23, 41, 0.8), rgba(10, 14, 39, 0.9));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.votes-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

.votes-info-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.votes-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    flex-shrink: 0;
}

.votes-info-item strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.votes-info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Vote Cards - Keep original styling but add small rocket icon */
.vote-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Small rocket icon before vote card title */
.vote-card .package-content h3::before {
    content: '🚀';
    display: inline-block;
    margin-right: 8px;
    font-size: 1.4rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.vote-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

.vote-popular {
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.vote-popular:hover {
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
}

.vote-value {
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.vote-value:hover {
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.vote-ultimate {
    border: 2px solid rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.02));
}

.vote-ultimate:hover {
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.vote-mega {
    border: 2px solid rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(245, 158, 11, 0.02));
}

.vote-mega:hover {
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}

.price-per-vote {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 600;
}

/* Ads Info Banner */
.ads-info-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(16, 23, 41, 0.8), rgba(10, 14, 39, 0.9));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.ads-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ads-info-item.ads-info-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
    border-color: rgba(255, 215, 0, 0.25);
}

.ads-info-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.ads-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
    flex-shrink: 0;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.ads-info-item strong {
    display: block;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.ads-info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Ad Upload Container */
.ad-upload-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ad-upload-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px dashed rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 180px;
}

.ad-upload-box:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.ad-upload-box.drag-over {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.12));
    border-color: var(--primary);
    border-style: solid;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.ad-file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.ad-upload-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ad-upload-text {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
}

.ad-upload-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.ad-url-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
    margin: 10px 0;
}

.ad-url-divider::before,
.ad-url-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.ad-url-divider span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0 10px;
}

.ad-url-input {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.ad-url-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.ad-preview-container {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(16, 23, 41, 0.8), rgba(10, 14, 39, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ad-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.ad-preview-header span {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.ad-clear-btn {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.ad-clear-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
}

.ad-preview-img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ad-preview-url {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Ad Cards Special Styling */
.package-card[data-position] {
    position: relative;
    overflow: visible;
}

.package-card[data-position]::after {
    content: '📢';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), #FFAA00);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 3px solid var(--dark);
    animation: adBadgePulse 2s ease-in-out infinite;
}

@keyframes adBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6); }
}

.package-card[data-position="top-banner-left"],
.package-card[data-position="top-banner-right"] {
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
}

.package-card[data-position="top-banner-left"]:hover,
.package-card[data-position="top-banner-right"]:hover {
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
    border-color: #10b981;
}

.package-card[data-position="side-ad-left"],
.package-card[data-position="side-ad-right"] {
    border: 2px solid rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.02));
}

.package-card[data-position="side-ad-left"]:hover,
.package-card[data-position="side-ad-right"]:hover {
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
    border-color: #8b5cf6;
}

.package-card[data-position="sticky-bottom"] {
    border: 2px solid rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.03));
}

.package-card[data-position="sticky-bottom"]:hover {
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
    border-color: #f59e0b;
}

/* Responsive adjustments for ads */
@media (max-width: 768px) {
    .ads-info-banner {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .ads-info-item {
        padding: 15px;
    }
    
    .ads-icon {
        font-size: 2rem;
    }
    
    .ad-upload-box {
        min-height: 150px;
        padding: 30px 15px;
    }
    
    .ad-upload-icon {
        font-size: 2.5rem;
    }
    
    .ad-preview-img {
        max-height: 200px;
    }
    
    .package-card[data-position]::after {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: -8px;
        right: -8px;
    }
}

@media (max-width: 768px) {
    .payment-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-tab {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .votes-info-banner {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .votes-info-item {
        padding: 15px;
    }
}

.package-card {
    position: relative;
    text-align: center;
    padding-top: 25px;
    overflow: visible;
}

.package-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 900;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(10, 14, 39, 0.8);
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.package-badge-starter {
    background: linear-gradient(135deg, #6b7280, #4b5563) !important;
}

.package-badge-popular {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    animation: pulse-glow 2s ease-in-out infinite;
}

.package-badge-value {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
}

.package-badge-extended {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.7);
    }
}

.package-content {
    padding: 15px 0 20px 0;
}

.package-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 800;
    margin-top: 5px;
}

.package-price {
    margin: 20px 0;
}

.save-badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

.package-popular {
    border: 3px solid #10b981 !important;
    transform: scale(1.05);
}

.package-premium {
    border: 3px solid #8b5cf6 !important;
}

.package-controls {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.package-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 180px;
}

.filter-select:hover {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.filter-select option {
    background: var(--dark);
    color: var(--text);
    padding: 10px;
}

.package-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.pagination-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.pagination-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.pagination-btn {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--primary), rgba(255, 215, 0, 0.8));
    border-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-dots {
    color: var(--text-muted);
    padding: 0 5px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .package-popular {
        transform: none;
    }
    
    .package-controls {
        justify-content: center;
    }
    
    .package-filters {
        width: 100%;
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
        min-width: 100%;
    }
    
    .package-pagination {
        flex-direction: column;
        text-align: center;
    }
    
    .pagination-info {
        width: 100%;
        text-align: center;
    }
    
    .pagination-buttons {
        justify-content: center;
    }
    
    .package-badge {
        top: -18px;
        padding: 8px 18px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .package-content h3 {
        font-size: 1.6rem;
    }
    
    .wallet-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .payment-actions .plan-btn,
    .cancel-btn,
    .paid-btn {
        flex: 1;
        width: 100%;
    }
}

.wallet-section {
    margin: 25px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.wallet-section h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.wallet-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
}

.wallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.wallet-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    min-height: 100px;
}

.wallet-option:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.wallet-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.wallet-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.wallet-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.wallet-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 12px;
    color: var(--dark);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wallet-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.wallet-btn span {
    font-size: 1.5rem;
}

.wallet-connected {
    color: var(--success);
    font-weight: 600;
    padding: 10px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    border: 1px solid var(--success);
}

.payment-address-section {
    margin: 25px 0;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 2px dashed var(--primary);
}

.payment-address-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payment-address-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.payment-address-box code {
    flex: 1;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.copy-address-btn {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-address-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.payment-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
}

.payment-note strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.payment-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.payment-btn {
    flex: 1;
    min-width: 150px;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.payment-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    border-color: var(--primary);
}

.payment-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.payment-btn.secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--text-muted);
}

.payment-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.payment-btn.manual {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

.payment-btn.manual:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

/* Promotional Popup - Clean Crypto Style */
.promo-popup {
    position: fixed;
    bottom: -200px;
    right: 20px;
    width: 360px;
    max-width: calc(100vw - 40px);
    z-index: 10000;
    animation: slideUpFloat 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 2s;
    transform-origin: bottom right;
}

.promo-popup.show {
    bottom: 20px;
}

@keyframes slideUpFloat {
    0% {
        bottom: -200px;
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    60% {
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        bottom: 20px;
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.promo-popup-content {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 215, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.promo-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.promo-icon-wrapper {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), rgba(255, 215, 0, 0.6));
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    animation: floatIcon 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(10deg);
    }
}

.promo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.promo-text {
    margin-top: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.promo-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.promo-text .highlight {
    color: var(--primary);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.promo-text p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.9;
}

.promo-cta-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary), rgba(255, 215, 0, 0.8));
    border: 1px solid var(--primary);
    border-radius: 12px;
    color: var(--dark);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 10px;
}

.promo-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.promo-cta-btn:hover::before {
    left: 100%;
}

.promo-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, var(--primary), rgba(255, 215, 0, 1));
}

.promo-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--text-muted);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
}

.promo-close-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

/* Responsive for payment and popup */
@media (max-width: 768px) {
    .payment-plans-grid {
        grid-template-columns: 1fr;
    }

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

    .payment-plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .payment-form-card {
        padding: 25px 20px;
    }

    .payment-actions {
        flex-direction: column;
    }

    .payment-btn {
        width: 100%;
    }

    .promo-popup {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }

    .promo-popup-content {
        padding: 20px;
    }

    .promo-text h3 {
        font-size: 1.2rem;
    }

    .promo-text p {
        font-size: 0.85rem;
    }

    .promo-icon-wrapper {
        width: 50px;
        height: 50px;
        top: -12px;
        right: 15px;
    }

    .promo-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .payment-header h1 {
        font-size: 2rem;
    }

    .payment-plan-card {
        padding: 30px 20px;
    }

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

    .promo-popup {
        width: calc(100vw - 30px);
        right: 15px;
    }

    .promo-popup-content {
        padding: 18px;
        border-radius: 25px;
    }

    .promo-icon-wrapper {
        width: 45px;
        height: 45px;
        top: -10px;
        right: 12px;
    }

    .promo-icon {
        font-size: 1.3rem;
    }

    .promo-text h3 {
        font-size: 1.1rem;
    }
}

/* Custom Notification */
.custom-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-notification.show {
    top: 20px;
    opacity: 1;
    pointer-events: all;
}

.custom-notification-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(255, 215, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 320px;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    animation: notificationSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.custom-notification.error .custom-notification-content {
    border-color: rgba(255, 68, 68, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(255, 68, 68, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.custom-notification.error .custom-notification-content::before {
    background: linear-gradient(90deg, transparent, var(--danger), transparent);
}

.custom-notification.error .custom-notification-title {
    color: var(--danger);
}

.custom-notification.show .custom-notification-content {
    animation: notificationSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes notificationSlideIn {
    0% {
        transform: translateY(-20px) scale(0.9);
        opacity: 0;
    }
    60% {
        transform: translateY(5px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.custom-notification-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.custom-notification-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Payment Notification */
.payment-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-left: 0;
    margin-right: 0;
}

.payment-notification.show {
    top: 20px;
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, 0);
    left: 50%;
    right: auto;
}

.payment-notification-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(255, 215, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 320px;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    animation: paymentNotificationSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.payment-notification.error .payment-notification-content {
    border-color: rgba(255, 68, 68, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(255, 68, 68, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.payment-notification.error .payment-notification-content::before {
    background: linear-gradient(90deg, transparent, var(--danger), transparent);
}

.payment-notification-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes paymentNotificationSlideIn {
    0% {
        left: 50%;
        transform: translate(-50%, -20px) scale(0.9);
        opacity: 0;
    }
    60% {
        left: 50%;
        transform: translate(-50%, 5px) scale(1.02);
    }
    100% {
        left: 50%;
        transform: translate(-50%, 0) scale(1);
        opacity: 1;
    }
}

.payment-notification-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

.payment-notification.error .payment-notification-icon {
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.5));
}

.payment-notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-notification-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
}

.payment-notification.error .payment-notification-title {
    color: var(--danger);
}

.payment-notification-message {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
}

.payment-notification-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    flex-shrink: 0;
}

/* Login Notification */
.login-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    z-index: 10003;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    max-width: 550px;
    padding: 0 20px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.login-notification.show {
    top: 20px;
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, 0);
    left: 50%;
    right: auto;
}

.login-notification-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(255, 215, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.4);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.login-notification.show .login-notification-content {
    animation: loginNotificationSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.login-notification-content.success {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(16, 185, 129, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.login-notification-content.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.8), transparent);
    animation: loginNotificationShimmer 3s ease-in-out infinite;
}

.login-notification-content.error {
    border-color: rgba(255, 68, 68, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(255, 68, 68, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.login-notification-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    flex-shrink: 0;
    animation: loginNotificationIconBounce 2s ease-in-out infinite;
    line-height: 1;
}

.login-notification-content.success .login-notification-icon {
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.8));
}

.login-notification-text {
    flex: 1;
    min-width: 0;
}

.login-notification-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.login-notification-content.success .login-notification-title {
    color: #10b981;
}

.login-notification-content.error .login-notification-title {
    color: #ff4444;
}

.login-notification-message {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.login-notification-message strong {
    color: #FFD700;
    font-weight: 700;
}

.login-notification-content.success .login-notification-message strong {
    color: #10b981;
}

.login-notification-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.login-notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.1);
}

@keyframes loginNotificationSlideIn {
    0% {
        left: 50%;
        transform: translate(-50%, -30px) scale(0.9);
        opacity: 0;
    }
    60% {
        left: 50%;
        transform: translate(-50%, 5px) scale(1.02);
    }
    100% {
        left: 50%;
        transform: translate(-50%, 0) scale(1);
        opacity: 1;
    }
}

@keyframes loginNotificationShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes loginNotificationIconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

@media (max-width: 768px) {
    .login-notification {
        max-width: 90vw;
        padding: 0 15px;
    }
    
    .login-notification-content {
        padding: 20px 22px;
        gap: 14px;
    }
    
    .login-notification-icon {
        font-size: 2.5rem;
    }
    
    .login-notification-title {
        font-size: 1.2rem;
    }
    
    .login-notification-message {
        font-size: 0.9rem;
    }
}

.payment-notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .payment-notification-content {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        padding: 18px 24px;
    }

    .payment-notification-title {
        font-size: 0.95rem;
    }

    .payment-notification-message {
        font-size: 0.85rem;
    }

    .payment-notification-icon {
        font-size: 1.8rem;
    }
}

.custom-notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.custom-notification-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.custom-notification-message {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .custom-notification-content {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        padding: 18px 24px;
    }

    .custom-notification-title {
        font-size: 1rem;
    }

    .custom-notification-message {
        font-size: 0.9rem;
    }

    .custom-notification-icon {
        font-size: 1.8rem;
    }
}

/* Free Vote Banner */
.free-vote-banner {
    position: fixed;
    top: -100px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    z-index: 10002;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    margin-left: 0;
    margin-right: 0;
}

.free-vote-banner.show {
    top: 20px;
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, 0);
    left: 50%;
    right: auto;
}

.free-vote-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(16, 185, 129, 0.4),
                0 0 30px rgba(255, 215, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    animation: freeVoteSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.free-vote-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerFreeVote 3s ease-in-out infinite;
}

@keyframes shimmerFreeVote {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes freeVoteSlideIn {
    0% {
        left: 50%;
        transform: translate(-50%, -20px) scale(0.9);
        opacity: 0;
    }
    60% {
        left: 50%;
        transform: translate(-50%, 5px) scale(1.02);
    }
    100% {
        left: 50%;
        transform: translate(-50%, 0) scale(1);
        opacity: 1;
    }
}

.free-vote-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    animation: freeVoteBounce 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes freeVoteBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.free-vote-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.free-vote-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: -0.5px;
}

.free-vote-message {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.free-vote-message strong {
    color: #FFD700;
    font-weight: 800;
    font-size: 1.1em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.free-vote-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    flex-shrink: 0;
    font-weight: 700;
}

.free-vote-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

@media (max-width: 768px) {
    .free-vote-banner {
        max-width: calc(100vw - 40px);
        padding: 0 15px;
    }
    
    .free-vote-content {
        padding: 18px 22px;
        gap: 15px;
    }
    
    .free-vote-icon {
        font-size: 2.5rem;
    }
    
    .free-vote-title {
        font-size: 1.1rem;
    }
    
    .free-vote-message {
        font-size: 0.9rem;
    }
    
    .free-vote-close {
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
    }
}

/* Top Marketing Banner - Clean & Professional */
.top-marketing-banner {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 170, 0, 0.08));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 8px 0;
    transition: all 0.3s ease;
    display: block;
    margin: 0;
}

.top-marketing-banner.show {
    display: block;
    animation: slideDownMarketing 0.4s ease-out;
}

/* Add margin to body when banner is shown to prevent content overlap */
body:has(.top-marketing-banner.show) {
    padding-top: 40px;
}

/* Alternative for browsers that don't support :has() */
.top-marketing-banner.show ~ * {
    margin-top: 40px;
}

@keyframes slideDownMarketing {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-marketing-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.top-marketing-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.top-marketing-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.top-marketing-icon {
    font-size: 1rem;
    animation: pulseIcon 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


.top-marketing-label {
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.75rem;
}

.top-marketing-number {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
}


/* Floating Marketing Widget - Keep for backward compatibility but hide by default */
.floating-marketing-widget {
    position: fixed;
    top: calc(50vh + 100px);
    right: -400px;
    transform: translateY(-50%);
    width: 240px;
    max-width: calc(100vw - 40px);
    z-index: 500 !important;
    opacity: 0;
    pointer-events: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: none !important;
}

/* Ensure widget is always visible when shown */
.floating-marketing-widget.show {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all;
    animation: flyInFloatingMarketingShake 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.floating-marketing-widget.hiding {
    animation: flyOutFloatingMarketing 0.5s ease-in forwards;
}

@keyframes flyInFloatingMarketingShake {
    0% {
        right: -400px;
        opacity: 0;
        transform: translateY(-50%) scale(0.8) translateX(0);
    }
    30% {
        right: 20px;
        opacity: 1;
        transform: translateY(-50%) scale(1.05) translateX(0);
    }
    40% {
        transform: translateY(-50%) scale(1) translateX(0);
    }
    50% {
        transform: translateY(-50%) scale(1) translateX(0);
    }
    100% {
        right: 20px;
        opacity: 1;
        transform: translateY(-50%) scale(1) translateX(0);
    }
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    25% {
        transform: translateY(-8px) scaleY(1.1);
    }
    50% {
        transform: translateY(0) scaleY(1);
    }
    75% {
        transform: translateY(8px) scaleY(0.9);
    }
}

@keyframes waveFlow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes flyOutFloatingMarketing {
    0% {
        right: 20px;
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    100% {
        right: -400px;
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
}

@keyframes milestonePulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 8px 32px rgba(0, 0, 0, 0.5);
    }
}

.floating-marketing-content {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(15px);
    border: 3px solid var(--primary);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.floating-marketing-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        rgba(255, 215, 0, 0.2), 
        rgba(255, 215, 0, 0.1), 
        transparent
    );
    animation: waveFlow 4s ease-in-out infinite;
    opacity: 0.6;
}

.floating-wave:nth-child(1) {
    top: 0;
    animation-delay: 0s;
}

.floating-wave:nth-child(2) {
    top: 33%;
    animation-delay: 1.3s;
}

.floating-wave:nth-child(3) {
    top: 66%;
    animation-delay: 2.6s;
}

.floating-marketing-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
}

.floating-marketing-close:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

.floating-marketing-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.floating-marketing-message {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.floating-marketing-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), #FFAA00, #FFD700, var(--primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s ease infinite;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
    letter-spacing: -1px;
}

.floating-marketing-message-end {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Admin Modal */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.admin-modal-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    border: 2px solid var(--primary);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.admin-modal-header h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.admin-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.admin-modal-close:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    transform: rotate(90deg);
}

.admin-modal-body {
    padding: 30px;
}

.listing-info {
    transition: all 0.3s;
}

.listing-info:hover {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    padding: 5px;
    margin: -5px;
}

@media (max-width: 768px) {
    .floating-marketing-widget {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }

    .floating-marketing-content {
        padding: 18px;
    }

    .floating-marketing-title {
        font-size: 0.9rem;
    }

    .floating-stat-value {
        font-size: 1.1rem;
    }
}

/* Premium Floating Ad ($10K) - ULTRA PREMIUM */
.premium-floating-ad {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 320px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.98) 0%,
        rgba(99, 102, 241, 0.98) 50%,
        rgba(139, 92, 246, 0.98) 100%);
    border: 3px solid rgba(255, 215, 0, 0.8);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 15px 50px rgba(139, 92, 246, 0.6),
        0 0 80px rgba(255, 215, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    z-index: 9998;
    animation: premiumAdFloat 3s ease-in-out infinite, premiumAdShine 5s linear infinite;
    backdrop-filter: blur(15px);
    overflow: visible;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.premium-floating-ad::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #FFA500);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.7;
    animation: premiumAdBorder 3s linear infinite;
}

.premium-floating-ad:hover:not(.minimized) {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(139, 92, 246, 0.7),
        0 0 100px rgba(255, 215, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    border-color: #FFD700;
}

/* Minimized state - compact premium badge */
.premium-floating-ad.minimized {
    width: 80px;
    height: 80px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.premium-floating-ad.minimized .premium-ad-content {
    display: none;
}

.premium-floating-ad.minimized .premium-ad-pulse,
.premium-floating-ad.minimized .premium-ad-glow,
.premium-floating-ad.minimized .premium-ad-particles {
    display: none;
}

.premium-floating-ad.minimized .premium-ad-minimize {
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    font-size: 18px;
}

.premium-floating-ad.minimized::after {
    content: '💎';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    animation: premiumAdPulse 2s ease-in-out infinite;
}

.premium-floating-ad.minimized:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.6),
        0 0 60px rgba(255, 215, 0, 0.5);
}

@keyframes premiumAdPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.8;
    }
}

@keyframes premiumAdFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes premiumAdShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

.premium-ad-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    animation: premiumAdPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes premiumAdPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.premium-ad-minimize {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    color: #FFD700;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.premium-ad-minimize:hover {
    background: rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
}

.premium-floating-ad {
    cursor: grab;
}

.premium-floating-ad:active {
    cursor: grabbing;
}

.premium-ad-content {
    position: relative;
    z-index: 2;
}

.premium-ad-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 8px;
}

.premium-ad-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    }
}

.premium-ad-price-tag {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
    animation: priceTagShake 3s ease-in-out infinite;
}

@keyframes priceTagShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
}

.premium-ad-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-ad-icon {
    font-size: 3rem;
    z-index: 2;
    animation: rocketBounce 2s ease-in-out infinite, rocketRotate 4s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes rocketBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes rocketRotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.premium-ad-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.premium-ad-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 6px;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 50%, #FFFFFF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: titleShimmer 3s linear infinite;
}

@keyframes titleShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.premium-ad-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.premium-ad-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
}

.premium-ad-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.premium-ad-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.premium-ad-stat .stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.premium-ad-stat .stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-ad-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    background-size: 200% 200%;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 4px 15px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: ctaGradient 3s ease infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.premium-ad-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: ctaShine 3s linear infinite;
}

.premium-ad-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #059669, #047857, #065f46);
}

.premium-ad-cta .cta-text {
    position: relative;
    z-index: 1;
}

.premium-ad-cta .cta-arrow {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

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

@keyframes ctaShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.premium-ad-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.4) 0%, 
        rgba(255, 165, 0, 0.3) 30%,
        transparent 70%);
    animation: premiumAdGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes premiumAdGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
    }
}

.premium-ad-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.premium-ad-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.premium-ad-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.premium-ad-particles .particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.premium-ad-particles .particle:nth-child(3) {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.premium-ad-particles .particle:nth-child(4) {
    bottom: 30%;
    left: 30%;
    animation-delay: 3s;
}

.premium-ad-particles .particle:nth-child(5) {
    top: 80%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-30px) translateX(10px) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translateY(-60px) translateX(20px) scale(0);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .premium-floating-ad {
        width: 280px;
        right: 10px;
        bottom: 10px;
        padding: 16px;
    }
    
    .premium-floating-ad.minimized {
        width: 60px;
        height: 60px;
        padding: 8px;
    }
    
    .premium-floating-ad.minimized::after {
        font-size: 24px;
    }
    
    .premium-ad-title {
        font-size: 1.1rem;
    }
    
    .premium-ad-icon {
        font-size: 2.5rem;
    }
}

