/* ============================================
   Pink Horizon - Minecraft Server Homepage
   ============================================ */

:root {
    --pink: #ff69b4;
    --pink-dark: #e0559e;
    --pink-light: #ffb6d9;
    --pink-glow: rgba(255, 105, 180, 0.3);
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #6a6a80;
    --border: #2a2a40;
    --discord: #5865F2;
    --success: #4ade80;
    --gold: #fbbf24;
    --purple: #a855f7;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   Particles Background
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--pink);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration, 8s) infinite;
    animation-delay: var(--particle-delay, 0s);
}

.particle:nth-child(even) {
    background: rgba(168, 85, 247, 0.8);
}

.particle:nth-child(3n) {
    background: rgba(255, 255, 255, 0.6);
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) translateX(0) scale(0); }
    10% { opacity: 0.7; }
    50% { transform: translateY(50vh) translateX(var(--drift, 20px)) scale(1); }
    90% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-10vh) translateX(var(--drift, 20px)) scale(0.5); }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

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

.nav-logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-pink { color: var(--pink); }
.logo-horizon { color: var(--text-primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    gap: 10px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--pink);
    color: white;
}

.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--pink-glow);
}

.btn-shop {
    background: var(--pink);
    color: white;
}

.btn-shop:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}

.btn-discord {
    background: var(--discord);
    color: white;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--pink);
    border: 1px solid var(--pink);
}

.btn-outline:hover {
    background: var(--pink);
    color: white;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at center top, rgba(255, 105, 180, 0.1) 0%, transparent 60%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 105, 180, 0.03) 60deg,
        transparent 120deg,
        rgba(168, 85, 247, 0.02) 180deg,
        transparent 240deg,
        rgba(255, 105, 180, 0.03) 300deg,
        transparent 360deg
    );
    animation: heroRotate 30s linear infinite;
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeSlideDown 0.8s ease both;
}

.title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -2px;
}

.title-main.graffiti {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(3.5rem, 12vw, 8rem);
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
    padding-bottom: 30px;
    animation: graffitiAppear 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.3s;
}

.graffiti-letter {
    display: inline-block;
    animation: letterSpray 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: calc(0.08s * var(--i) + 0.5s);
}

.graffiti-pink {
    color: #ff69b4;
    text-shadow: 2px 2px 0 #a0004e;
    -webkit-text-stroke: 0.5px #ff69b4;
}

.graffiti-white {
    color: #ffffff;
    text-shadow: 2px 2px 0 rgba(100, 100, 100, 0.5);
    -webkit-text-stroke: 0.5px #ffffff;
}

.graffiti-space {
    display: inline-block;
    width: 0.15em;
}

@keyframes letterSpray {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg) translateY(20px);
        filter: blur(8px);
    }
    60% {
        transform: scale(1.15) rotate(3deg) translateY(-5px);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateY(0);
        filter: blur(0);
    }
}

@keyframes graffitiAppear {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Paint Drip Effect - realistische Farbläufer */
.drip-container {
    position: absolute;
    bottom: 10px;
    left: 5%;
    right: 5%;
    height: 120px;
    pointer-events: none;
    overflow: visible;
}

.drip {
    position: absolute;
    left: var(--x);
    top: 0;
    width: var(--w, 4px);
    height: 0;
    background: linear-gradient(180deg,
        var(--drip-color, #ff69b4) 0%,
        var(--drip-color, #ff69b4) 70%,
        transparent 100%);
    border-radius: 0 0 50% 50%;
    animation: dripRun 3s cubic-bezier(0.4, 0, 0.6, 1) var(--delay) forwards;
    opacity: 0;
}

.drip::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(var(--w, 4px) + 4px);
    height: calc(var(--w, 4px) + 4px);
    background: var(--drip-color, #ff69b4);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    opacity: 0;
    animation: dripDrop 3s cubic-bezier(0.4, 0, 0.6, 1) var(--delay) forwards;
}

@keyframes dripRun {
    0% {
        height: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.85;
    }
    40% {
        height: calc(var(--h) * 0.6);
    }
    100% {
        height: var(--h);
        opacity: 0.75;
    }
}

@keyframes dripDrop {
    0%, 20% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    50% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.2);
    }
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
}

/* Spray Splatter Punkte */
.hero-title {
    position: relative;
}

.hero-title::before,
.hero-title::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0;
    animation: splatter 0.4s ease forwards;
}

.hero-title::before {
    width: 6px;
    height: 6px;
    top: 25%;
    left: 2%;
    animation-delay: 1.8s;
    box-shadow:
        12px -8px 0 2px rgba(255, 105, 180, 0.5),
        -8px 15px 0 1px rgba(255, 20, 147, 0.4),
        25px 10px 0 3px rgba(255, 105, 180, 0.3),
        -20px -5px 0 1px rgba(199, 21, 133, 0.4),
        40px -15px 0 2px rgba(255, 105, 180, 0.25);
}

.hero-title::after {
    width: 5px;
    height: 5px;
    top: 20%;
    right: 3%;
    animation-delay: 2s;
    box-shadow:
        -15px 8px 0 2px rgba(255, 255, 255, 0.3),
        10px -12px 0 1px rgba(255, 105, 180, 0.4),
        -25px -8px 0 2px rgba(255, 255, 255, 0.2),
        20px 15px 0 1px rgba(255, 105, 180, 0.35);
}

@keyframes splatter {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    70% {
        opacity: 0.8;
        transform: scale(1.3);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.text-pink {
    color: var(--pink);
    text-shadow: 0 0 40px var(--pink-glow);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeSlideDown 0.8s ease 1.8s both;
}

.hero-ip {
    margin-bottom: 40px;
    animation: fadeSlideDown 0.8s ease 2.2s both;
}

.ip-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.ip-box:hover {
    border-color: var(--pink);
    box-shadow: 0 0 20px var(--pink-glow);
}

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

.ip-address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pink);
}

.ip-copy {
    background: var(--pink);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeSlideDown 0.8s ease 2.5s both;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.badge-icon {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--pink);
}

.badge-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.hero-scroll a span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 30px; opacity: 0.3; }
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* ============================================
   Game Modes
   ============================================ */
.gamemodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.gamemode-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gamemode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    opacity: 0;
    transition: var(--transition);
}

.gamemode-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
}

.gamemode-card:hover::before {
    opacity: 1;
}

.gamemode-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gamemode-icon img {
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.gamemode-icon-fallback {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.gamemode-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.gamemode-tagline {
    color: var(--pink);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.gamemode-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.gamemode-features span {
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    color: var(--pink-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.gamemode-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    display: none;
}

.gamemode-card.expanded .gamemode-desc {
    display: block;
}

.gamemode-card.expanded .gamemode-expand {
    display: none;
}

/* ============================================
   Commands
   ============================================ */
.commands-tabs, .ranks-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cmd-tab, .rank-tab, .vs-tab {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.cmd-tab:hover, .rank-tab:hover, .vs-tab:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.cmd-tab.active, .rank-tab.active, .vs-tab.active {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}

.cmd-content, .rank-content {
    display: none;
}

.cmd-content.active, .rank-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.cmd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.cmd-category h4 {
    color: var(--pink);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.cmd-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmd {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.cmd code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.cmd span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ============================================
   Ranks
   ============================================ */
.ranks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.rank-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition);
    position: relative;
}

.rank-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.rank-tier-1 { border-top: 3px solid #94a3b8; }
.rank-tier-2 { border-top: 3px solid var(--gold); }
.rank-tier-3 { border-top: 3px solid var(--pink); }

.rank-featured {
    transform: scale(1.02);
    border-color: var(--pink);
    box-shadow: 0 0 30px var(--pink-glow);
}

.rank-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--pink);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.rank-header h3 {
    font-size: 1.5rem;
}

.rank-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--pink);
}

.rank-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rank-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rank-perks li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    flex-shrink: 0;
}

.ranks-cta {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.ranks-cta p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* ============================================
   Vote Section
   ============================================ */
.vote-container {
    display: block;
    max-width: 600px;
    margin: 0 auto 40px;
}

.vote-info h3, .vote-rewards h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.vote-info ol {
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.vote-info ol li {
    counter-increment: step;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.vote-info ol li::before {
    content: counter(step);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.vote-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.voteshop-title {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.voteshop-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.voteshop-subtitle code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--pink);
}

.vs-content {
    display: none;
}

.vs-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.reward-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.reward-section h4 {
    color: var(--pink);
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.reward-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reward {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 14px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.section-dark .reward {
    background: var(--bg-primary);
}

.reward-cost {
    min-width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    padding: 0 6px;
}

.reward-name {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ============================================
   Links Section
   ============================================ */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.link-card.discord:hover { border-color: var(--discord); }
.link-card.shop:hover { border-color: var(--pink); }
.link-card.vote:hover { border-color: var(--success); }

.link-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.link-icon svg {
    width: 30px;
    height: 30px;
}

.discord .link-icon { background: rgba(88, 101, 242, 0.2); color: var(--discord); }
.shop .link-icon { background: rgba(255, 105, 180, 0.2); color: var(--pink); }
.vote .link-icon { background: rgba(74, 222, 128, 0.2); color: var(--success); }

.link-card h3 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.link-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 30px;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 900;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 5px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-info a {
    color: var(--pink);
    text-decoration: none;
}

.footer-info code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--pink);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

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

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-bottom: 1px solid var(--border);
    }

    .navbar.mobile-open .nav-actions {
        display: flex;
        position: absolute;
        top: calc(100% + 200px);
        left: 20px;
    }

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

    .vote-container {
        max-width: 100%;
    }

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

    .rank-featured {
        transform: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .hero-badges {
        gap: 20px;
    }

    .ip-box {
        flex-wrap: wrap;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

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

    .gamemode-card {
        padding: 25px;
    }

    .commands-tabs, .ranks-tabs {
        gap: 5px;
    }

    .cmd-tab, .rank-tab, .vs-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
