/* ===== CSS Variables ===== */
:root {
    /* Colors - Inspired by Saweria's cyan/blue theme */
    --primary-color: #00d4ff;
    --primary-dark: #00a8cc;
    --primary-light: #5ce1ff;
    --secondary-color: #6c63ff;
    --accent-color: #ff6b9d;
    --success-color: #00e676;
    --warning-color: #ffab00;
    --danger-color: #ff5252;

    --bg-primary: #0a0e27;
    --bg-secondary: #151932;
    --bg-tertiary: #1e2442;
    --bg-card: rgba(30, 36, 66, 0.6);

    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #7a8ba0;

    --border-color: rgba(0, 212, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Typography */
    --font-family: 'Alterous Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Alterous Display', 'Impact', sans-serif;
    --font-display-italic: 'Alterous Display', 'Impact', sans-serif;
}

/* ===== Custom Font - Alterous ===== */
@font-face {
    font-family: 'Alterous Display';
    src: url('fonttitlemenu/Alterous Display Preview.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alterous Text';
    src: url('fonttitlemenu/Alterous Text Preview.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== Custom Font - Super Squad (Backup) ===== */
@font-face {
    font-family: 'Super Squad';
    src: url('super_squad/Super Squad.woff2') format('woff2'),
        url('super_squad/Super Squad.ttf') format('truetype'),
        url('super_squad/Super Squad.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Super Squad Italic';
    src: url('super_squad/Super Squad Italic.woff2') format('woff2'),
        url('super_squad/Super Squad Italic.ttf') format('truetype'),
        url('super_squad/Super Squad Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

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

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Animated Background ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0e27 0%, #151932 50%, #0f1a3a 100%);
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(108, 99, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 157, 0.08) 0%, transparent 30%);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 2s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 40%;
    top: 60%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(6) {
    left: 60%;
    top: 70%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.particle:nth-child(7) {
    left: 70%;
    top: 20%;
    animation-delay: 6s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 80%;
    top: 50%;
    animation-delay: 7s;
    animation-duration: 14s;
}

.particle:nth-child(9) {
    left: 90%;
    top: 80%;
    animation-delay: 8s;
    animation-duration: 12s;
}

.particle:nth-child(10) {
    left: 15%;
    top: 50%;
    animation-delay: 9s;
    animation-duration: 16s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-30px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-50px) translateX(-10px) scale(1);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) translateX(20px) scale(1.3);
        opacity: 0.7;
    }
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.15);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(108, 99, 255, 0.12);
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 157, 0.1);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Banner Ad Carousel ===== */
.banner-ad-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 2px solid rgba(45, 96, 255, 0.6);
    overflow: hidden;
    z-index: 999;
}

.banner-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.banner-link:hover {
    transform: scale(1.02);
}

.banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 96, 255, 0.1), rgba(153, 69, 255, 0.1));
    border: 2px dashed rgba(45, 96, 255, 0.3);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Banner Navigation Controls */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 96, 255, 0.5);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-nav:hover {
    background: rgba(45, 96, 255, 0.3);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(45, 96, 255, 0.5);
    transform: translateY(-50%) scale(1.15);
}

.banner-prev {
    left: 15px;
}

.banner-next {
    right: 15px;
}

/* Banner Indicators */
.banner-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.banner-dot:hover {
    background: rgba(0, 212, 255, 0.6);
    transform: scale(1.2);
}

.banner-dot.active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

/* Banner Management Panel Styles */
.existing-banners-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-item-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.banner-item-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(45, 96, 255, 0.2);
}

.banner-item-preview {
    width: 200px;
    height: 67px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.banner-item-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner-item-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.banner-item-link {
    font-family: var(--font-family);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.banner-item-link:hover {
    color: var(--primary-color);
}

.banner-item-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-banner-edit,
.btn-banner-delete {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-banner-edit {
    background: rgba(45, 96, 255, 0.2);
    border: 1px solid rgba(45, 96, 255, 0.5);
    color: var(--primary-color);
}

.btn-banner-edit:hover {
    background: rgba(45, 96, 255, 0.4);
    box-shadow: 0 0 15px rgba(45, 96, 255, 0.3);
}

.btn-banner-delete {
    background: rgba(255, 82, 82, 0.2);
    border: 1px solid rgba(255, 82, 82, 0.5);
    color: var(--danger-color);
}

.btn-banner-delete:hover {
    background: rgba(255, 82, 82, 0.4);
    box-shadow: 0 0 15px rgba(255, 82, 82, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .banner-ad-carousel {
        height: 120px;
    }

    .banner-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .banner-prev {
        left: 10px;
    }

    .banner-next {
        right: 10px;
    }

    .banner-placeholder {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
    }

    .banner-item-card {
        flex-direction: column;
    }

    .banner-item-preview {
        width: 100%;
        height: 100px;
    }
}

/* ===== Navigation ===== */
/* ===== Navigation ===== */
.navbar {
    background: rgba(10, 14, 39, 0.6);
    /* More transparent for glass effect */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 96, 255, 0.5);
    /* Tech Blue Border */
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xs);
    flex: 1;
    justify-content: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(45, 96, 255, 0.2);
    border-color: #2D60FF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(45, 96, 255, 0.4);
}

.nav-item.active {
    background: #2D60FF;
    border-color: #2D60FF;
    color: #FFF;
    box-shadow: 0 0 20px rgba(45, 96, 255, 0.6);
}

.nav-item .icon {
    font-size: 1.2rem;
}

/* Sci-Fi Buttons */
.btn-create,
.btn-wallet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    /* Sci-Fi Shape */
    border: none;
    border-radius: 0;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* Chamfered Shape */
    clip-path: polygon(10px 0, 100% 0,
            100% calc(100% - 10px), calc(100% - 10px) 100%,
            0 100%, 0 10px);
}

.btn-create {
    background: #2D60FF;
    /* Solid Tech Blue */
    box-shadow: 0 0 15px rgba(45, 96, 255, 0.4);
}

.btn-wallet {
    background: linear-gradient(135deg, #9945FF, #2D60FF);
    /* Solana + Tech Blue */
    font-family: var(--font-display);
    box-shadow: 0 0 15px rgba(153, 69, 255, 0.4);
}

.btn-create:hover,
.btn-wallet:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
    box-shadow: 0 0 30px rgba(45, 96, 255, 0.6);
}

/* ===== Wallet Connect Styles ===== */
.wallet-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(153, 69, 255, 0.2);
    border: 1px solid rgba(153, 69, 255, 0.5);
    border-radius: var(--radius-md);
}

.wallet-address {
    font-family: var(--font-family);
    font-size: 0.8rem;
    color: #14F195;
    font-weight: 500;
}

.admin-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-disconnect {
    background: rgba(255, 82, 82, 0.2);
    border: 1px solid rgba(255, 82, 82, 0.5);
    color: var(--danger-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-disconnect:hover {
    background: rgba(255, 82, 82, 0.4);
}

/* ===== Crypto Price Ticker ===== */
.crypto-ticker {
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 1px solid rgba(45, 96, 255, 0.3);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-content {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #b0c4de;
    font-family: var(--font-family);
}

.ticker-item.loading {
    color: #666;
}

.ticker-symbol {
    font-weight: 700;
    color: #ffffff;
}

.ticker-price {
    color: #e0e0e0;
}

.ticker-change {
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.ticker-change.positive {
    color: #00FF88;
    background: rgba(0, 255, 136, 0.1);
}

.ticker-change.negative {
    color: #FF5252;
    background: rgba(255, 82, 82, 0.1);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Hero Section ===== */
.hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* More space for Carousel */
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-hero.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-hero.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-hero.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
}

/* ===== Sci-Fi Component Utilities ===== */
.sci-fi-box {
    position: relative;
    background: transparent;
    padding: 2px;
    /* For border width */
    z-index: 1;
}

.sci-fi-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    /* Border thickness */
    background: #2D60FF;
    /* Solid Sci-Fi Blue */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    /* Chamfered Corners */
    clip-path: polygon(15px 0, 100% 0,
            100% calc(100% - 15px), calc(100% - 15px) 100%,
            0 100%, 0 15px);
    z-index: -1;
    pointer-events: none;
}

.sci-fi-box::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--bg-card);
    clip-path: polygon(13px 0, 100% 0,
            100% calc(100% - 13px), calc(100% - 13px) 100%,
            0 100%, 0 13px);
    z-index: -2;
    pointer-events: none;
}

/* Stats Cards with Sci-Fi Style */
.stats-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    /* Reset standard styles */
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    /* Add reusable sci-fi logic manually here or use utility class in HTML */
}

/* Apply reusable sci-fi styles to stat-item explicitly for now */
.stat-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: #2D60FF;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    z-index: -1;
    transition: all 0.3s ease;
}

.stat-item::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: rgba(10, 14, 39, 0.8);
    /* Darker internal bg */
    clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
    z-index: -2;
}

.stat-item:hover::before {
    background: var(--primary-color);
    /* Bright Cyan on Hover */
    box-shadow: 0 0 15px var(--primary-color);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-label {
    font-family: var(--font-family);
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* Hero Campaign Carousel */
/* Hero Campaign Carousel */
/* Hero Campaign Carousel - Clean Sci-Fi Style */
.hero-campaign-carousel {
    width: 100%;
    max-width: 800px;
    /* Widened for impact */
    min-height: 460px;
    background: rgba(45, 96, 255, 0.4);
    /* Border Color */
    padding: 2px;
    /* acts as border width */
    position: relative;
    z-index: 1;

    /* Chamfered Shape */
    clip-path: polygon(24px 0, 100% 0,
            100% calc(100% - 24px), calc(100% - 24px) 100%,
            0 100%, 0 24px);
}

.hero-campaign-inner {
    background: rgba(10, 14, 39, 0.9);
    /* Inner Dark BG */
    width: 100%;
    height: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;

    /* Inner Chamfer matching Outer */
    clip-path: polygon(22.5px 0, 100% 0,
            100% calc(100% - 22.5px), calc(100% - 22.5px) 100%,
            0 100%, 0 22.5px);
}

.hero-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(45, 96, 255, 0.2);
    padding-bottom: 1rem;
}

.header-content h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #2D60FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(45, 96, 255, 0.3);
}

.archive-info {
    margin: 0.5rem 0 0 0;
    font-family: var(--font-family);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fee-highlight {
    color: #FFD700;
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-carousel-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-carousel-container {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.hero-campaign-card {
    min-width: 100%;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    box-sizing: border-box;
}

.hero-campaign-card .campaign-banner {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.hero-campaign-card .campaign-banner-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-campaign-card .campaign-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.hero-campaign-card .campaign-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.hero-campaign-card .campaign-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.hero-campaign-card .campaign-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.hero-campaign-card .campaign-desc {
    font-family: var(--font-family);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-campaign-card .campaign-cta {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.hero-campaign-card .btn-cta {
    flex: 1;
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.hero-campaign-card .btn-cta.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.hero-campaign-card .btn-cta.secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.hero-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: var(--primary-color);
    color: white;
}

.hero-carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel-dot.active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 4px;
}

/* ===== Search Section ===== */
.search-section {
    padding: 0 0 var(--spacing-lg);
}

.search-container {
    display: flex;
    gap: 1rem;
    max-width: 600px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ===== Stats Dashboard ===== */
.stats-dashboard {
    padding: var(--spacing-lg) 0;
    margin-bottom: var(--spacing-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stats-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.stats-card .stats-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.stats-card .stats-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stats-card .stats-label {
    font-family: var(--font-family);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ===== Airdrops Section ===== */
.airdrops-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 96, 255, 0.15);
    border: 1px solid rgba(45, 96, 255, 0.4);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 0.8rem;
    color: #b0c4de;
}

.fee-badge strong {
    color: #FFD700;
    font-weight: 700;
}

.filter-buttons {
    display: flex;
    gap: var(--spacing-xs);
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(108, 99, 255, 0.2));
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===== Airdrop Grid ===== */
/* ===== Airdrop Grid ===== */
.airdrops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Changed to 3 columns for wider cards */
    gap: var(--spacing-lg);
}

.airdrop-card {
    /* Reset standard styles */
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2px;
    /* Container acts as the border */
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    cursor: pointer;
    animation: fadeIn 0.5s ease;

    /* Using background as the border color + clip-path */
    background: rgba(45, 96, 255, 0.4);
    /* Default Thin Border Color */
    clip-path: polygon(15px 0, 100% 0,
            100% calc(100% - 15px), calc(100% - 15px) 100%,
            0 100%, 0 15px);
}

/* Inner Content Container */
.airdrop-card-inner {
    background: rgba(10, 14, 39, 0.9);
    /* Dark Bg */
    height: 100%;
    width: 100%;
    padding: 1.5rem;
    clip-path: polygon(14px 0, 100% 0,
            100% calc(100% - 14px), calc(100% - 14px) 100%,
            0 100%, 0 14px);
    transition: background 0.3s ease;
}

/* Hover State - Glows the outer "border" container */
.airdrop-card:hover {
    transform: translateY(-5px);
    background: #2D60FF;
    /* Solid Blue Border on Hover */
    box-shadow: 0 0 20px rgba(45, 96, 255, 0.4);
    /* Glow Effect */
}

/* Clean Border Utility for Card Inner */
.airdrop-card-inner {
    background: rgba(10, 14, 39, 0.9);
    height: 100%;
    width: 100%;
    padding: 1.5rem;
    clip-path: polygon(13.5px 0, 100% 0,
            100% calc(100% - 13.5px), calc(100% - 13.5px) 100%,
            0 100%, 0 13.5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Removed leftover rule */

/* Network Badge */
.network-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.network-badge.ethereum {
    background: rgba(98, 126, 234, 0.2);
    color: #627EEA;
    border: 1px solid rgba(98, 126, 234, 0.3);
}

.network-badge.bsc {
    background: rgba(243, 186, 47, 0.2);
    color: #F3BA2F;
    border: 1px solid rgba(243, 186, 47, 0.3);
}

.network-badge.polygon {
    background: rgba(130, 71, 229, 0.2);
    color: #8247E5;
    border: 1px solid rgba(130, 71, 229, 0.3);
}

.network-badge.arbitrum {
    background: rgba(40, 160, 240, 0.2);
    color: #28A0F0;
    border: 1px solid rgba(40, 160, 240, 0.3);
}

.network-badge.optimism {
    background: rgba(255, 4, 32, 0.2);
    color: #FF0420;
    border: 1px solid rgba(255, 4, 32, 0.3);
}

.network-badge.solana {
    background: rgba(153, 69, 255, 0.2);
    color: #9945FF;
    border: 1px solid rgba(153, 69, 255, 0.3);
}

.network-badge.avalanche {
    background: rgba(232, 65, 66, 0.2);
    color: #E84142;
    border: 1px solid rgba(232, 65, 66, 0.3);
}

.network-badge.multichain {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Difficulty Badge */
.difficulty-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.6rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.difficulty-badge.easy {
    background: rgba(0, 230, 118, 0.2);
    color: var(--success-color);
}

.difficulty-badge.medium {
    background: rgba(255, 171, 0, 0.2);
    color: var(--warning-color);
}

.difficulty-badge.hard {
    background: rgba(255, 82, 82, 0.2);
    color: var(--danger-color);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.countdown-item {
    text-align: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    min-width: 50px;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.countdown-label {
    font-family: var(--font-family);
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.card-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.card-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.card-title-section {
    flex: 1;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
}

.card-description {
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-info {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.info-label {
    font-family: var(--font-family);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.network-value {
    text-transform: uppercase;
    font-family: var(--font-family);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(45, 96, 255, 0.2);
    border: 1px solid rgba(45, 96, 255, 0.4);
    display: inline-block;
}

.network-value.solana {
    background: rgba(153, 69, 255, 0.2);
    border-color: rgba(153, 69, 255, 0.5);
    color: #9945FF;
}

.network-value.ethereum {
    background: rgba(98, 126, 234, 0.2);
    border-color: rgba(98, 126, 234, 0.5);
    color: #627EEA;
}

.network-value.polygon {
    background: rgba(130, 71, 229, 0.2);
    border-color: rgba(130, 71, 229, 0.5);
    color: #8247E5;
}

.network-value.arbitrum {
    background: rgba(40, 160, 240, 0.2);
    border-color: rgba(40, 160, 240, 0.5);
    color: #28A0F0;
}

.network-value.bsc {
    background: rgba(243, 186, 47, 0.2);
    border-color: rgba(243, 186, 47, 0.5);
    color: #F3BA2F;
}

.network-value.multichain {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    color: #00D4FF;
}

.card-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-action {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--primary-color);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-action.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.btn-action.primary:hover {
    box-shadow: var(--shadow-glow);
}

/* ===== Modal & Admin Panel ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--spacing-md);
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.admin-panel {
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid #2D60FF;
    /* Sci-Fi Blue Standard Border */
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    /* Viewport limit */
    box-shadow: 0 0 50px rgba(45, 96, 255, 0.25);
    display: flex;
    flex-direction: column;
    /* Stack header and content */
    animation: slideUp 0.3s ease;
    overflow: hidden;
    /* Contain inner scroll radius */
}

.admin-panel-inner {
    background: transparent;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 8rem;
    /* Extra safe space */
}

/* Fee Notice */
.fee-notice-box {
    background: rgba(45, 96, 255, 0.1);
    border: 1px solid rgba(45, 96, 255, 0.3);
    margin: 1.5rem 1.5rem 0 1.5rem;
    padding: 1rem;
    /* border-radius: 8px; Keep it boxy or slight radius? Let's use clean box */
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.notice-text strong {
    color: #FFD700;
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
}

.notice-text p {
    margin: 0;
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: #e0e0e0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-secondary);
    z-index: 10;
}

.panel-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
}

.close-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 107, 157, 0.2);
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* ===== Form Styles ===== */
.airdrop-form {
    padding: var(--spacing-lg);
}

.form-section {
    margin-bottom: var(--spacing-xl);
}

.form-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== Upload Area ===== */
.upload-area {
    position: relative;
    min-height: 200px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    text-align: center;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.upload-hint {
    font-family: var(--font-family);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
}

.image-preview {
    position: relative;
    padding: var(--spacing-md);
}

.image-preview img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.remove-image {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 36px;
    height: 36px;
    background: rgba(255, 107, 157, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-image:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* ===== Form Actions ===== */
.form-actions {
    display: flex;
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
    /* Prevent shrinking */
    padding-bottom: 2rem;
    /* Add spacing below buttons */
    margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===== Campaigns Section ===== */
.campaigns-section {
    padding: var(--spacing-xl) 0;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.campaign-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid #2D60FF;
    /* Solid Sci-Fi Blue Border */
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeIn 0.5s ease;
    position: relative;
    box-shadow: 0 0 15px rgba(45, 96, 255, 0.15);
}

.campaign-card:hover {
    transform: translateY(-8px);
    border-color: #00D4FF;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.campaign-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

.campaign-content {
    padding: var(--spacing-lg);
    position: relative;
    margin-top: -40px;
}

.campaign-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 3px solid var(--bg-secondary);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.campaign-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    border: 3px solid var(--bg-secondary);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.campaign-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.campaign-description {
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.campaign-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.campaign-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.campaign-info-label {
    font-family: var(--font-family);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-info-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Upload Banner Specific Styling */
.upload-banner {
    min-height: 250px;
}

.upload-banner .image-preview {
    aspect-ratio: 16/9;
}

.upload-banner .image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-logo {
    min-height: 200px;
}

.banner-preview img {
    max-height: 400px;
}

/* ===== Campaign Carousel ===== */
.campaign-carousel-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    margin: var(--spacing-lg) auto;
    max-width: 1200px;
    padding: 0 70px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track .campaign-card {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    margin: 0 !important;
    border-radius: var(--radius-lg);
    box-sizing: border-box;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-lg);
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.carousel-indicator:hover {
    background: rgba(0, 212, 255, 0.6);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0a0e1a, #1a1f35);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-logo {
    width: 120px;
    height: auto;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.social-link.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.3);
}

.social-link.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link span {
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer Donate Section */
.footer-donate {
    margin-top: 1rem;
}

.footer-donate h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.donate-addresses {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.donate-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.donate-label {
    font-weight: 700;
    color: #FFD700;
    min-width: 40px;
}

.donate-address {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    background: rgba(45, 96, 255, 0.1);
    border: 1px solid rgba(45, 96, 255, 0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    color: #b0c4de;
    word-break: break-all;
}

/* Footer Disclaimer Box */
.footer-disclaimer-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
}

.footer-disclaimer-box p {
    margin: 0;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-disclaimer-box strong {
    color: #FFC107;
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .airdrops-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .airdrops-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaigns-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .navbar .container {
        flex-wrap: wrap;
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .filter-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .airdrops-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 100px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}