/* Advanced Vanity Configs Website - Premium UI */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff69b4;
    --primary-dark: #ff1493;
    --secondary: #8b5cf6;
    --background: #0a0a0f;
    --surface: #1a1a24;
    --surface-light: #252532;
    --text: #ffffff;
    --text-secondary: #a0a0b0;
    --border: #2a2a3a;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Special colors for Ruins and Notings */
    --ruins-primary: #ffd700;
    --ruins-secondary: #ff8c00;
    --notings-primary: #00ffff;
    --notings-secondary: #0080ff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 7s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-dark), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

/* Header */
.header {
    background: rgba(26, 26, 36, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.8));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.8)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 105, 180, 1)); }
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--secondary), var(--primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
    position: relative;
    display: inline-block;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
}

.glitch::before {
    animation: glitch 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-2px, -2px);
    opacity: 0.8;
}

.glitch::after {
    animation: glitch 2.5s infinite reverse;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
    opacity: 0.8;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.7s both;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 2px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    width: 100%;
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
    justify-content: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Section */
.filter-section {
    padding: 3rem 0;
    background: rgba(26, 26, 36, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    position: sticky;
    top: 88px;
    z-index: 999;
}

.section-title-small {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
}

/* Special Filter Buttons */
.filter-btn-special {
    position: relative;
}

.filter-btn-special[data-filter="ruins"] {
    border-color: var(--ruins-primary);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
}

.filter-btn-special[data-filter="ruins"]:hover,
.filter-btn-special[data-filter="ruins"].active {
    background: linear-gradient(135deg, var(--ruins-primary), var(--ruins-secondary));
    border-color: var(--ruins-primary);
    color: #000;
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6);
    animation: goldShine 2s ease-in-out infinite;
}

.filter-btn-special[data-filter="notings"] {
    border-color: var(--notings-primary);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
}

.filter-btn-special[data-filter="notings"]:hover,
.filter-btn-special[data-filter="notings"].active {
    background: linear-gradient(135deg, var(--notings-primary), var(--notings-secondary));
    border-color: var(--notings-primary);
    color: #000;
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.6);
    animation: diamondShine 2s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% { box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6); }
    50% { box-shadow: 0 8px 50px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 140, 0, 0.8); }
}

@keyframes diamondShine {
    0%, 100% { box-shadow: 0 4px 30px rgba(0, 255, 255, 0.6); }
    50% { box-shadow: 0 8px 50px rgba(0, 255, 255, 1), 0 0 30px rgba(0, 128, 255, 0.8); }
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 450px;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1.25rem 0.875rem 3.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Configs Grid */
.configs-section {
    padding: 5rem 0;
    min-height: 600px;
}

.configs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

.config-card {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.config-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.config-card:hover::before {
    opacity: 1;
}

.config-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
}

/* Special Config Cards */
.config-card[data-type="ruins"] {
    border-color: var(--ruins-primary);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 140, 0, 0.05));
    position: relative;
}

.config-card[data-type="ruins"]:hover {
    border-color: var(--ruins-primary);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 140, 0, 0.3);
    animation: goldPulse 1.5s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 140, 0, 0.3); }
    50% { box-shadow: 0 25px 80px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 140, 0, 0.5); }
}

.config-card[data-type="notings"] {
    border-color: var(--notings-primary);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 128, 255, 0.05));
    position: relative;
}

.config-card[data-type="notings"]:hover {
    border-color: var(--notings-primary);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 128, 255, 0.3);
    animation: diamondPulse 1.5s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 128, 255, 0.3); }
    50% { box-shadow: 0 25px 80px rgba(0, 255, 255, 0.7), 0 0 60px rgba(0, 128, 255, 0.5); }
}

.config-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.config-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tag {
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tag-rage {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
    border: 2px solid var(--danger);
}

.tag-legit {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 2px solid var(--success);
}

.tag-semi-legit {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
    border: 2px solid var(--warning);
}

.tag-ruins {
    background: linear-gradient(135deg, var(--ruins-primary), var(--ruins-secondary));
    color: #000;
    border: 2px solid var(--ruins-primary);
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.tag-notings {
    background: linear-gradient(135deg, var(--notings-primary), var(--notings-secondary));
    color: #000;
    border: 2px solid var(--notings-primary);
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
    animation: diamondShimmer 3s ease-in-out infinite;
}

@keyframes diamondShimmer {
    0%, 100% { filter: brightness(1) hue-rotate(0deg); }
    50% { filter: brightness(1.3) hue-rotate(10deg); }
}

.config-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.config-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.config-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.config-downloads {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.download-icon {
    width: 18px;
    height: 18px;
}

.no-results {
    text-align: center;
    padding: 6rem 0;
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Upload Section */
.upload-section {
    padding: 5rem 0;
    background: rgba(26, 26, 36, 0.3);
}

.upload-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 26, 36, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-weight: 700;
    color: var(--text);
    font-size: 1.05rem;
}

.form-input,
.form-textarea {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    font-weight: 500;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.tag-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.tag-option {
    cursor: pointer;
}

.tag-option input[type="radio"] {
    display: none;
}

.tag-option .tag {
    display: block;
    text-align: center;
    padding: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.85rem;
}

.tag-option input[type="radio"]:checked + .tag {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
}

.tag-option input[type="radio"]:checked + .tag-ruins {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.tag-option input[type="radio"]:checked + .tag-notings {
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.6);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 105, 180, 0.3);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-label:hover {
    border-color: var(--primary);
    background: rgba(255, 105, 180, 0.05);
    transform: scale(1.02);
}

.upload-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(26, 26, 36, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 105, 180, 0.1);
    padding: 2.5rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .configs-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .configs-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        gap: 1.5rem;
    }
    
    .filter-group {
        justify-content: center;
    }
    
    .tag-selector {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}


/* Secret Key Field */
.required-badge {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-hint {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-style: italic;
}

.form-hint.error {
    color: var(--danger);
}

.form-hint.success {
    color: var(--success);
}
