/* ==================== БАЗОВЫЕ СТИЛИ ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --bg-dark: #0a0a0f;
    --bg-card: #13131a;
    --bg-card-hover: #1a1a24;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --glow: 0 0 40px rgba(99, 102, 241, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* ==================== КОСМИЧЕСКИЙ ФОН ==================== */
.space-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, #0a0a0f 50%);
}

.stars-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 90px 10px, white, transparent),
        radial-gradient(1px 1px at 130px 50px, white, transparent),
        radial-gradient(2px 2px at 70px 100px, white, transparent);
    background-size: 200px 200px;
    opacity: 0;
    animation: stars-fade 3s ease-in forwards;
}

.stars-layer-1 {
    animation: stars-move 120s linear infinite, stars-fade 3s ease-in forwards;
}

.stars-layer-2 {
    animation: stars-move 180s linear infinite reverse, stars-fade 3s 0.5s ease-in forwards;
    opacity: 0.6;
}

.stars-layer-3 {
    animation: stars-move 240s linear infinite, stars-fade 3s 1s ease-in forwards;
    opacity: 0.4;
}

@keyframes stars-fade {
    to { opacity: 1; }
}

@keyframes stars-move {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

#particlesCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Shooting Stars */
.shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    pointer-events: none;
}

.shooting-star {
    position: absolute;
    height: 2px;
    width: 2px;
    background: white;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
    opacity: 0;
}

.shooting-star::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-150px);
}

.shooting-star:nth-child(1) { top: 10%; left: 20%; animation: shooting 4s 2s ease-out infinite; }
.shooting-star:nth-child(2) { top: 30%; left: 70%; animation: shooting 4s 5s ease-out infinite; }
.shooting-star:nth-child(3) { top: 50%; left: 30%; animation: shooting 4s 8s ease-out infinite; }
.shooting-star:nth-child(4) { top: 70%; left: 80%; animation: shooting 4s 11s ease-out infinite; }
.shooting-star:nth-child(5) { top: 20%; left: 50%; animation: shooting 4s 14s ease-out infinite; }

@keyframes shooting {
    0% { opacity: 0; transform: translate(0, 0) rotate(-45deg); }
    5% { opacity: 1; }
    100% { opacity: 0; transform: translate(-400px, 400px) rotate(-45deg); }
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    animation: hero-fade-in 1s ease-out;
}

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

/* Avatar Section */
.avatar-section {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(40px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.avatar-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.5), 0 0 100px rgba(99, 102, 241, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(99, 102, 241, 0.7), 0 0 120px rgba(99, 102, 241, 0.4);
}

/* Loading state for avatar */
.avatar[src=""] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--bg-card);
    opacity: 0;
    transition: opacity 0.3s;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    opacity: 0.5;
    animation: ring-rotate 10s linear infinite;
}

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

/* Avatar Fallback */
.avatar-wrapper.avatar-fallback {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: white;
}

.avatar-wrapper.avatar-fallback::before {
    content: 'P';
}

.status-badge {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    animation: badge-slide-in 0.8s 0.5s ease-out both;
}

@keyframes badge-slide-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.status-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Hero Text */
.hero-text {
    text-align: center;
    max-width: 800px;
}

.name-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.name {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0;
}

.name-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

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

.name-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.5;
}

.name-underline {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 1rem auto 0;
    max-width: 200px;
    border-radius: 2px;
    animation: underline-grow 1s 0.5s ease-out both;
}

@keyframes underline-grow {
    from { max-width: 0; }
    to { max-width: 200px; }
}

.role-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    animation: role-fade-in 0.8s 0.8s ease-out both;
}

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

.role-icon {
    font-size: 1.5rem;
    animation: icon-spin 20s linear infinite;
}

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

.role {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Marquee / Бегущая строка */
.marquee-container {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    margin: 0 auto 3rem;
    padding: 1rem 0;
    position: relative;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.05) 0%, 
        rgba(99, 102, 241, 0.1) 50%, 
        rgba(99, 102, 241, 0.05) 100%);
    border-radius: 12px;
    animation: marquee-fade-in 0.8s 1s ease-out both;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-dark), transparent);
}

.marquee {
    display: flex;
    gap: 4rem;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 500;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.333%);
    }
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    animation: social-fade-in 0.8s 1.2s ease-out both;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.4s;
}

.social-link:hover::before {
    opacity: 0.1;
}

.social-link:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover .social-icon {
    transform: scale(1.2) rotate(5deg);
}

.social-label {
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: scroll-fade-in 1s 1.5s ease-out both;
}

@keyframes scroll-fade-in {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { height: 60px; opacity: 1; }
    50% { height: 40px; opacity: 0.5; }
}

.scroll-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==================== DISCORD SECTION ==================== */
.discord-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    animation: section-fade-in 0.8s ease-out;
}

@keyframes section-fade-in {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-primary);
}

.section-title-number {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.6;
    font-weight: 300;
}

.section-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

/* Discord Grid */
.discord-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.discord-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: card-fade-in 0.8s ease-out;
    cursor: pointer;
}

@keyframes card-fade-in {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.discord-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.5s;
}

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

.discord-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.discord-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.discord-card:hover .discord-icon {
    transform: scale(1.1);
}

.discord-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.discord-online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.discord-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

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

.discord-link-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.discord-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.discord-link:hover::before {
    width: 300px;
    height: 300px;
}

.discord-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
}

.discord-link span {
    position: relative;
    z-index: 1;
}

/* Loading Card */
.loading-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ==================== BOTS SECTION ==================== */
.bots-section {
    padding: 120px 0;
    position: relative;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bot-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: card-fade-in 0.8s ease-out;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.5s;
}

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

.bot-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.bot-platform-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.discord-badge {
    background: rgba(88, 101, 242, 0.15);
    color: #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.telegram-badge {
    background: rgba(34, 165, 240, 0.15);
    color: #22a5f0;
    border: 1px solid rgba(34, 165, 240, 0.3);
}

.bot-avatar-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.bot-avatar {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bot-card:hover .bot-avatar {
    transform: scale(1.1) rotate(5deg);
}

.bot-info {
    text-align: center;
    margin-bottom: 2rem;
}

.bot-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.bot-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.bot-stat {
    text-align: center;
}

.bot-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.bot-stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bot-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.bot-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bot-link:hover::before {
    width: 300px;
    height: 300px;
}

.bot-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
}

.bot-link span {
    position: relative;
    z-index: 1;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

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

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: right;
}

/* ==================== RESPONSIVE ==================== */

/* Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .discord-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .avatar-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .avatar-glow {
        width: 200px;
        height: 200px;
    }
    
    .status-badge {
        bottom: 5px;
        right: -5px;
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
    
    .name {
        font-size: 2.25rem;
    }
    
    .role {
        font-size: 1.125rem;
    }
    
    .marquee-container {
        max-width: 100%;
        padding: 0.75rem 0;
        margin: 0 -1.25rem 2rem;
        width: calc(100% + 2.5rem);
        border-radius: 0;
    }
    
    .marquee-container::before,
    .marquee-container::after {
        width: 60px;
    }
    
    .marquee-text {
        font-size: 0.9375rem;
    }
    
    .marquee {
        animation: marquee-scroll 20s linear infinite;
    }
    
    .social-links {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero {
        padding-bottom: 20px;
    }
    
    .discord-section {
        padding: 80px 0;
    }
    
    .bots-section {
        padding: 80px 0;
    }
    
    .bots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bot-card {
        padding: 2rem 1.5rem;
    }
    
    .bot-avatar-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-number {
        font-size: 1.25rem;
    }
    
    .discord-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .discord-card {
        padding: 1.75rem 1.25rem;
        margin: 0 -0.25rem;
    }
    
    .discord-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .discord-icon {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .discord-info h3 {
        font-size: 1.25rem;
    }
    
    .discord-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.375rem;
    }
    
    .discord-link-wrapper {
        margin-top: 1.5rem;
    }
    
    .discord-link {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.9375rem;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        width: 100%;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 40px 0 20px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .avatar-section {
        margin-bottom: 1rem;
    }
    
    .avatar-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .avatar-glow {
        width: 180px;
        height: 180px;
    }
    
    .avatar-ring {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-width: 1.5px;
    }
    
    .name {
        font-size: 1.875rem;
    }
    
    .name-underline {
        max-width: 150px;
        height: 3px;
    }
    
    .role {
        font-size: 1rem;
    }
    
    .role-icon {
        font-size: 1.25rem;
    }
    
    .marquee-container {
        padding: 0.5rem 0;
        margin: 0 -1rem 1.5rem;
        width: calc(100% + 2rem);
    }
    
    .marquee-container::before,
    .marquee-container::after {
        width: 40px;
    }
    
    .marquee-text {
        font-size: 0.875rem;
    }
    
    .marquee {
        animation: marquee-scroll 15s linear infinite;
        gap: 3rem;
    }
    
    .social-links {
        gap: 0.625rem;
    }
    
    .social-link {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .discord-section {
        padding: 60px 0;
    }
    
    .bots-section {
        padding: 60px 0;
    }
    
    .bot-card {
        padding: 1.5rem 1.25rem;
    }
    
    .bot-avatar-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .bot-name {
        font-size: 1.25rem;
    }
    
    .bot-description {
        font-size: 0.875rem;
    }
    
    .bot-stats {
        gap: 0.75rem;
    }
    
    .bot-stat-value {
        font-size: 1.125rem;
    }
    
    .bot-link {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .section-title-number {
        font-size: 1.125rem;
    }
    
    .section-subtitle {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
    
    .discord-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .discord-header {
        margin-bottom: 1.25rem;
    }
    
    .discord-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
    
    .discord-info h3 {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .discord-online {
        font-size: 0.875rem;
    }
    
    .discord-stats {
        gap: 0.625rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
        margin-bottom: 0.375rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .discord-link-wrapper {
        margin-top: 1.25rem;
    }
    
    .discord-link {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-text {
        font-size: 0.875rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
    }
    
    .footer-copyright {
        font-size: 0.8125rem;
    }
}
