/* ========================================
   MONOCHROME DESIGN - BLACK & WHITE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Monochrome Palette */
    --black: #000000;
    --dark-gray: #0d0d0d;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text-gray: #b0b0b0;
    --white: #ffffff;
    --border-gray: #333333;
    
    /* Fonts */
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--white);
}

.discord-link svg {
    fill: var(--text-gray);
    transition: fill 0.3s ease;
}

.discord-link:hover svg {
    fill: var(--white);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
}

/* Geometric patterns */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: rotate 30s linear infinite;
}

.particles::before {
    top: -200px;
    left: -200px;
}

.particles::after {
    bottom: -200px;
    right: -200px;
    animation-direction: reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 8px;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--white);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.3rem 3.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid;
}

.cta-button.primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    margin: 15px auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   DONATE SECTION
   ======================================== */
.donate-section {
    padding: 150px 0;
    background: var(--dark-gray);
    position: relative;
}

.section-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.donate-card {
    background: var(--medium-gray);
    border: 1px solid var(--border-gray);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.donate-card:hover {
    transform: translateY(-10px);
    border-color: var(--white);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.donate-card.featured {
    border: 2px solid var(--white);
}

.donate-card.premium {
    border: 2px solid var(--white);
}

/* Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.donate-card:hover .card-glow {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--white);
    color: var(--black);
    padding: 6px 45px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.75rem;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-gray);
}

.rank-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    filter: grayscale(100%);
}

.card-header h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 2rem;
    margin-top: 0.5rem;
    opacity: 0.6;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-title);
}

.price-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    padding: 1.5rem 1.5rem;
}

.perks-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.perks-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.perks-list li:last-child {
    border-bottom: none;
}

.perk-icon {
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 1.8rem;
}

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

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: grayscale(100%);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.feature-text strong {
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-text span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.donate-button {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.donate-button:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

/* Crate Selector */
.crate-selector {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gray);
    margin-bottom: 1.5rem;
}

.crate-selector h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.crate-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.crate-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    background: var(--dark-gray);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.crate-option:hover {
    background: rgba(255, 255, 255, 0.03);
}

.crate-option label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    flex: 1;
}

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

.crate-name {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crate-amount {
    width: 60px;
    padding: 0.4rem;
    background: var(--medium-gray);
    border: 1px solid var(--border-gray);
    color: var(--white);
    text-align: center;
    font-family: var(--font-title);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.crate-amount:enabled {
    border-color: var(--white);
}

.crate-amount:focus {
    outline: none;
    border-color: var(--white);
}

.crate-amount:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.crate-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
}

/* ========================================
   CRATES SECTION
   ======================================== */
.crates-section {
    padding: 120px 0;
    background: var(--dark-gray);
    position: relative;
}

.crates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.crate-card {
    background: var(--medium-gray);
    border: 1px solid var(--border-gray);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.crate-card:hover {
    transform: translateY(-5px);
    border-color: var(--white);
}

.crate-card.featured-crate {
    border: 2px solid var(--white);
}

.crate-card.legendary-crate {
    border: 2px solid var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.crate-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crate-badge.legendary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--white);
}

.crate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
}

.crate-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.crate-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.crate-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    margin-bottom: 1.5rem;
}

.crate-price .currency {
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.crate-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-title);
}

.crate-price .per {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.crate-quantity {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.crate-quantity label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.quantity-input {
    width: 100%;
    padding: 0.8rem;
    background: var(--dark-gray);
    border: 1px solid var(--border-gray);
    color: var(--white);
    text-align: center;
    font-family: var(--font-title);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--white);
}

.crate-button {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.crate-button:hover {
    background: var(--white);
    color: var(--black);
}

.crates-info {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gray);
}

.crates-info p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Support Banner */
.support-banner {
    margin-top: 6rem;
    background: var(--medium-gray);
    border: 1px solid var(--border-gray);
    padding: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.support-icon {
    color: var(--white);
    filter: grayscale(100%);
}

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

.support-text h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.support-text p {
    color: var(--text-gray);
    font-size: 1rem;
}

.support-button {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-button:hover {
    background: var(--white);
    color: var(--black);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 150px 0;
    background: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--medium-gray);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--white);
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
}

.feature-item h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--medium-gray);
    margin: 10% auto;
    padding: 3rem;
    border: 2px solid var(--white);
    width: 90%;
    max-width: 500px;
    text-align: center;
    animation: slideDown 0.4s ease;
}

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

.close {
    color: var(--text-gray);
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close:hover {
    color: var(--white);
}

.modal-content h2 {
    font-family: var(--font-title);
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

#minecraftUsername {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    border: 1px solid var(--border-gray);
    background: var(--dark-gray);
    color: var(--white);
    margin-bottom: 2rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

#minecraftUsername:focus {
    outline: none;
    border-color: var(--white);
}

.modal-button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--white);
    color: var(--black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ========================================
   ADMIN PANEL - HIDDEN SECTION
   ======================================== */
.hidden-section {
    display: none;
}

.admin-section {
    min-height: 100vh;
    padding: 150px 0;
    background: var(--black);
}

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

.admin-header {
    text-align: center;
    margin-bottom: 4rem;
}

.admin-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-auth {
    max-width: 500px;
    margin: 0 auto 4rem;
}

.auth-box {
    background: var(--medium-gray);
    padding: 3rem;
    border: 1px solid var(--border-gray);
    text-align: center;
}

.auth-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
}

.auth-box h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#adminPassword {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-gray);
    background: var(--dark-gray);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

#adminPassword:focus {
    outline: none;
    border-color: var(--white);
}

.admin-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--black);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.admin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.admin-panel {
    margin-top: 3rem;
}

.admin-panel.hidden {
    display: none;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--medium-gray);
    padding: 2rem;
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--white);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    filter: grayscale(100%);
}

.stat-info h4 {
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--white);
}

/* Transactions Section */
.transactions-section {
    background: var(--medium-gray);
    padding: 2rem;
    border: 1px solid var(--border-gray);
}

.transactions-section h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--dark-gray);
    border-bottom: 1px solid var(--border-gray);
}

th, td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

th {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

tbody tr {
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-gray);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-gray);
}

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

.footer-section h4 {
    font-family: var(--font-title);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    margin: 0.5rem 0;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

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

.server-ip {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: var(--font-title);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    
    .donate-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .support-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .amount {
        font-size: 4rem;
    }
}
