* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --primary-dark: #991b1b;
    --primary-light: #ef4444;
    --secondary-color: #7f1d1d;
    --accent-color: #b91c1c;
    --text-dark: #ffffff;
    --text-light: #d1d5db;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-light: #1a1a1a;
    --bg-white: #111111;
    --bg-card: #1f1f1f;
    --gradient-1: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    --gradient-2: linear-gradient(135deg, #ef4444 0%, #7f1d1d 100%);
    --gradient-3: linear-gradient(135deg, #b91c1c 0%, #450a0a 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    --shadow-sm: 0 1px 2px 0 rgba(220, 38, 38, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(220, 38, 38, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(220, 38, 38, 0.4);
    --shadow-red: 0 0 20px rgba(220, 38, 38, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    border-bottom-color: rgba(220, 38, 38, 0.4);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.85;
    z-index: 1;
    mix-blend-mode: multiply;
}

.gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 100px rgba(220, 38, 38, 0.5);
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
    box-shadow: 0 0 80px rgba(185, 28, 28, 0.4);
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-dark);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
    box-shadow: 0 0 90px rgba(153, 27, 27, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #991b1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.8));
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.6);
    border-color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.8);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.status-indicator.offline {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.server-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(220, 38, 38, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 120px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    color: white;
}

.server-info {
    background: var(--bg-darker);
    position: relative;
}

.server-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px var(--primary-color);
}

.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.server-info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.server-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.server-info-card:hover::before {
    left: 100%;
}

.server-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.info-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.server-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.server-ip {
    font-family: 'Courier New', monospace;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
    word-break: break-all;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    padding: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.btn-copy {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
    border: 1px solid var(--primary-color);
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.6);
    background: var(--primary-light);
}

.announcements {
    background: var(--bg-dark);
}

.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.announcement-card:hover {
    transform: translateX(5px);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
    border-left-color: var(--primary-color);
    border-color: rgba(220, 38, 38, 0.4);
}

.announcement-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcement-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.announcement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.announcement-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.rules {
    background: var(--bg-darker);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.rule-category {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border-top: 4px solid var(--primary-color);
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.rule-category:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.3);
    transform: translateY(-5px);
}

.rule-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.rule-list {
    list-style: none;
    padding: 0;
}

.rule-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rule-list li:last-child {
    border-bottom: none;
}

.rule-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.8);
}

.rules-note {
    background: rgba(220, 38, 38, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.rules-note p {
    color: var(--text-light);
    margin: 0;
}

.rules-note strong {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
}

.gallery {
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
}

.gallery-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #dc2626 100%);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-image::after {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.gallery-image img + span {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.team {
    background: var(--bg-darker);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
    border-color: var(--primary-color);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 50%;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-role {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.member-desc {
    color: var(--text-light);
    font-size: 0.875rem;
}

.about {
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.features {
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 2.5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact {
    background: var(--bg-darker);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-dark);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2), 0 0 15px rgba(220, 38, 38, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
}

.footer {
    background: var(--bg-darker);
    color: white;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 -5px 20px rgba(220, 38, 38, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}

.footer-section a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    color: var(--text-light);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.players {
    background: var(--bg-dark);
}

.players-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.players-loading,
.players-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.players-loading p,
.players-empty p {
    font-size: 1.125rem;
}

.players-list::-webkit-scrollbar {
    width: 8px;
}

.players-list::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 10px;
}

.players-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.player-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.player-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    transform: translateX(5px);
}

.player-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.player-info {
    flex: 1;
}

.player-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.player-info p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.player-info h4 {
    margin: 0;
}

.player-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.players-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.player-stat-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.player-stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.3);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.whitelist {
    background: var(--bg-darker);
}

.whitelist-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.whitelist-info {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    height: fit-content;
}

.whitelist-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.requirements-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    font-size: 1rem;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.whitelist-note {
    background: rgba(220, 38, 38, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.whitelist-note p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

.whitelist-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.whitelist-form h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.whitelist-form .form-group {
    margin-bottom: 1.5rem;
}

.whitelist-form label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whitelist-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-dark);
    color: var(--text-dark);
}

.whitelist-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2), 0 0 15px rgba(220, 38, 38, 0.3);
}

.server-stats-section {
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card-large {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.stat-card-large:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
    transform: translateY(-10px);
}

.stat-icon-large {
    font-size: 4rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
    margin-bottom: 0.5rem;
}

.stat-label-large {
    color: var(--text-light);
    font-size: 1rem;
}

.restart-timer {
    background: var(--bg-darker);
    padding: 3rem 0;
}

.restart-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.2);
}

.restart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.restart-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-dark);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    min-width: 100px;
}

.timer-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
    margin-bottom: 0.5rem;
}

.timer-label {
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.restart-note {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-darker);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        padding: 2rem 0;
        border-top: 1px solid rgba(220, 38, 38, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content,
    .features-grid,
    .server-info-grid,
    .rules-grid,
    .gallery-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .players-container,
    .whitelist-wrapper {
        grid-template-columns: 1fr;
    }

    .stat-card-large {
        flex-direction: column;
        text-align: center;
    }

    .timer-display {
        flex-wrap: wrap;
    }

    .timer-item {
        min-width: 80px;
        padding: 1rem 1.5rem;
    }

    .timer-value {
        font-size: 2rem;
    }

    .server-stats {
        gap: 1rem;
    }

    .stat-item {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

