/* About Section */
.about {
    padding: 4.5rem 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 242, 197, 0.15);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 242, 197, 0.12), transparent);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(74, 242, 197, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    box-shadow: 0 6px 20px rgba(74, 242, 197, 0.4);
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(74, 242, 197, 0.6);
}

.about-card h3 {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.about-card p {
    color: rgba(161, 166, 195, 0.95);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
}

/* Servers Section */
.servers {
    padding: 4.5rem 0;
    position: relative;
    z-index: 1;
}

.server-info {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.server-card {
    position: relative;
    width: 100%;
    padding: 2.4rem 2.6rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 242, 197, 0.15);
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        conic-gradient(from 180deg at 50% 50%,
            rgba(74, 242, 197, 0.13),
            transparent,
            transparent,
            rgba(56, 189, 248, 0.13),
            transparent,
            transparent,
            rgba(242, 184, 74, 0.17),
            transparent);
    opacity: 0.55;
    filter: blur(32px);
    z-index: -1;
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.2rem;
    padding-bottom: 1.9rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.server-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.server-icon {
    max-width: 120px;
    min-width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 0%, rgba(248, 250, 252, 0.26), transparent 55%),
                var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 18px 32px rgba(15, 118, 110, 0.6);
}

.server-title h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-light);
}

.server-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-indicator {
    position: relative;
}

.server-status.online .status-indicator i {
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

.server-status.connecting .status-indicator i {
    color: var(--primary-color);
    animation: pulse 1.5s infinite;
}

.server-status.offline .status-indicator i {
    color: #ff4757;
}

.server-status.error .status-indicator i {
    color: #ffa502;
}

.status-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#status-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.status-description {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.2rem 2.4rem;
    border: 1px solid rgba(74, 242, 197, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    min-height: 120px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 242, 197, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 242, 197, 0.25), 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 242, 197, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(74, 242, 197, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(74, 242, 197, 0.5);
}

.stat-content {
    flex: 1;
    min-width: 0; /* Permite que el contenido se encoja */
}

.stat-label {
    color: rgba(74, 242, 197, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: var(--font-primary);
}

.stat-value {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Server Connection */
.server-connection {
    margin-bottom: 3rem;
}

.connection-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connection-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.connection-value {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    /* flex: 1; */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.connection-value .loading-spinner {
    margin-right: 0.75rem;
}

.copy-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Server Actions */
.server-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-connect, .btn-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.btn-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .server-card {
        padding: 2rem;
    }

    .server-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .server-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .server-actions {
        flex-direction: column;
    }

    .btn-connect, .btn-info {
        width: 100%;
        justify-content: center;
    }

    .server-icon{
        /* width: 120px; */
        font-size: 2rem;
    }
}

/* Features Section */
.features {
    padding: 4.5rem 0;
    position: relative;
    z-index: 1;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 242, 197, 0.12);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 242, 197, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 242, 197, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    box-shadow: 0 6px 20px rgba(74, 242, 197, 0.4);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(74, 242, 197, 0.6);
}

.feature-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
    color: var(--text-light);
}

.feature-item p {
    color: rgba(161, 166, 195, 0.9);
    font-size: 1rem;
    line-height: 1.7;
}

/* Community Section */
.community {
    padding: 3.8rem 0;
    /* background: rgba(5, 5, 5, 0.8); */
    position: relative;
    z-index: 1;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.community-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 242, 197, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.community-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(74, 242, 197, 0.2);
}

.community-card.discord {
    border-color: #5865F2;
}

.community-card.discord:hover {
    box-shadow: 0 20px 40px rgba(88, 101, 242, 0.3);
}

.community-card.steam {
    border-color: #03428f;
}

.community-card.steam:hover {
    box-shadow: 0 20px 40px rgba(12, 86, 176, 0.3);
}

.community-card.youtube {
    border-color: #FF0000;
}

.community-card.youtube:hover {
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.community-card.forum {
    border-color: var(--accent-color);
}

.community-card.forum:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.community-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.community-card.discord .community-icon {
    background: linear-gradient(135deg, #5865F2, #7983F5);
}

.community-card.steam .community-icon {
    background: linear-gradient(135deg, #1b2838, #2a3f5f);
}

.community-card.youtube .community-icon {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.community-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.community-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

.community-stats {
    /* background: rgba(0, 0, 0, 0.3); */
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #7983F5);
    color: white;
}

.btn-discord.enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #5865F2, #7983F5);
    border: 2px solid transparent;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    box-shadow: 0 8px 15px rgba(88, 101, 242, 0.2);
}

.btn-discord.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.btn-discord.enhanced:hover::before {
    left: 100%;
}

.btn-discord.enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(88, 101, 242, 0.3);
    background: linear-gradient(135deg, #4752C4, #5865F2);
}

.btn-discord.enhanced:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(88, 101, 242, 0.2);
}

.btn-discord.enhanced .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-right: 1rem;
}

.btn-discord.enhanced .btn-icon i {
    font-size: 1.2rem;
}

.btn-discord.enhanced .btn-text {
    flex: 1;
    text-align: left;
}

.btn-discord.enhanced .btn-main {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-discord.enhanced .btn-sub {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
    margin-top: 2px;
}

.btn-discord.enhanced .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-discord.enhanced:hover .btn-arrow {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.btn-discord.enhanced .btn-arrow i {
    font-size: 0.8rem;
}

.btn-steam {
    background: linear-gradient(135deg, #1b2838, #2a3f5f);
    color: white;
}

.btn-youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
}

.btn-forum {
    background: var(--gradient-secondary);
    color: var(--bg-dark);
}

/* Top Players Section */
.top-players {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.top-players-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.top-player-card {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.top-player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-player-card:hover::before {
    opacity: 1;
}

.top-player-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.top-player-card.first {
    border-color: #ffd700;
}

.top-player-card.first:hover {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.top-player-card.second {
    border-color: #c0c0c0;
}

.top-player-card.second:hover {
    border-color: #c0c0c0;
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.4);
}

.top-player-card.third {
    border-color: #cd7f32;
}

.top-player-card.third:hover {
    border-color: #cd7f32;
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.4);
}

.top-player-position {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.top-player-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.top-player-card.first .top-player-avatar {
    border-color: #ffd700;
}

.top-player-card.second .top-player-avatar {
    border-color: #c0c0c0;
}

.top-player-card.third .top-player-avatar {
    border-color: #cd7f32;
}

.top-player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-player-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-player-xp {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.top-player-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.top-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.top-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Rajdhani', sans-serif;
}

.loading-state,
.error-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.loading-state i,
.error-state i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .top-players-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    /* background: rgba(5, 5, 5, 0.8); */
    position: relative;
    z-index: 1;
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(74, 242, 197, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(74, 242, 197, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-text {
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 4.5rem 0;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-only {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(74, 242, 197, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 242, 197, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    border-color: rgba(74, 242, 197, 0.3);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(74, 242, 197, 0.4);
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(74, 242, 197, 0.6);
}

.contact-item h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.contact-item p {
    color: rgba(161, 166, 195, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    background: var(--gradient-dark);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(45, 239, 233, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(45, 239, 233, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

/* Voting System Styles */
.voting-hero {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(74, 242, 197, 0.25);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.voting-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 242, 197, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.voting-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(74, 242, 197, 0.25);
    border-color: rgba(74, 242, 197, 0.4);
}

.voting-hero-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 10px 40px rgba(74, 242, 197, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.voting-hero:hover .voting-hero-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 50px rgba(74, 242, 197, 0.6);
}

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

.voting-hero-content h3 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.voting-hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(161, 166, 195, 0.95);
    font-weight: 400;
}

.command-highlight {
    display: inline-block;
    background: rgba(74, 242, 197, 0.15);
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.05em;
    border: 1px solid rgba(74, 242, 197, 0.3);
}

/* Voting Features Grid */
.voting-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.voting-feature-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(74, 242, 197, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.voting-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 242, 197, 0.08), transparent);
    transition: left 0.6s ease;
}

.voting-feature-card:hover::before {
    left: 100%;
}

.voting-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 242, 197, 0.2);
    border-color: rgba(74, 242, 197, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(74, 242, 197, 0.2) 0%, rgba(74, 242, 197, 0.05) 100%);
    border: 2px solid rgba(74, 242, 197, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.voting-feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(74, 242, 197, 0.3) 0%, rgba(74, 242, 197, 0.1) 100%);
    box-shadow: 0 8px 25px rgba(74, 242, 197, 0.3);
}

.voting-feature-card h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.voting-feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(161, 166, 195, 0.9);
}

/* Voting Commands Section */
.voting-commands {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(74, 242, 197, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
}

.commands-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.command-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 242, 197, 0.2);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.command-item:hover {
    transform: translateY(-5px);
    background: rgba(74, 242, 197, 0.08);
    border-color: rgba(74, 242, 197, 0.4);
    box-shadow: 0 8px 25px rgba(74, 242, 197, 0.2);
}

.command-text {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(74, 242, 197, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(74, 242, 197, 0.3);
}

.command-description {
    font-size: 0.9rem;
    color: rgba(161, 166, 195, 0.85);
    line-height: 1.4;
}

/* Recent Demos Styles */
.recent-demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.demos-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.demos-loading i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.demos-loading p {
    font-size: 1.1rem;
}

.demo-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 242, 197, 0.15);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 242, 197, 0.1), transparent);
    transition: left 0.6s ease;
}

.demo-card:hover::before {
    left: 100%;
}

.demo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 242, 197, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.demo-card-header {
    background: rgba(255, 255, 255, 0.04);
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(74, 242, 197, 0.2);
}

.demo-map-name {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.demo-map-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(74, 242, 197, 0.3);
}

.demo-date {
    font-size: 0.95rem;
    color: rgba(161, 166, 195, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-date i {
    color: var(--primary-color);
}

.demo-card-body {
    padding: 2rem;
}

.demo-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(74, 242, 197, 0.1);
}

.demo-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.demo-team-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(161, 166, 195, 0.7);
}

.demo-team-score {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
}

.demo-score-separator {
    font-size: 1.5rem;
    color: rgba(161, 166, 195, 0.5);
    font-weight: 300;
}

.demo-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.demo-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.demo-info-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(74, 242, 197, 0.2) 0%, rgba(74, 242, 197, 0.05) 100%);
    border: 1px solid rgba(74, 242, 197, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.demo-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.demo-info-label {
    font-size: 0.75rem;
    color: rgba(161, 166, 195, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.demo-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-card-footer {
    padding: 0 2rem 2rem;
}

.demo-download-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 242, 197, 0.3);
}

.demo-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 242, 197, 0.5);
}

.demo-download-btn i {
    font-size: 1.1rem;
}

/* Recent Demos Minimal Style */
.recent-demos-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.demo-card-minimal {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(74, 242, 197, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-card-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 242, 197, 0.08), transparent);
    transition: left 0.6s ease;
}

.demo-card-minimal:hover::before {
    left: 100%;
}

.demo-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 242, 197, 0.15);
    border-color: rgba(74, 242, 197, 0.25);
}

.demo-minimal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(74, 242, 197, 0.1);
}

.demo-minimal-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(74, 242, 197, 0.2) 0%, rgba(74, 242, 197, 0.05) 100%);
    border: 1px solid rgba(74, 242, 197, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.demo-minimal-title {
    flex: 1;
}

.demo-minimal-map {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.demo-minimal-date {
    font-size: 0.85rem;
    color: rgba(161, 166, 195, 0.7);
}

.demo-minimal-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.demo-minimal-score {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
}

.demo-minimal-team {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-minimal-team-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
    margin-bottom: 0.2rem;
}

.demo-minimal-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(161, 166, 195, 0.8);
}

.demo-minimal-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.demo-minimal-info-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.demo-minimal-footer {
    margin-top: 1rem;
}

.demo-minimal-btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(74, 242, 197, 0.1);
    border: 1px solid rgba(74, 242, 197, 0.3);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.demo-minimal-btn:hover {
    background: rgba(74, 242, 197, 0.2);
    border-color: rgba(74, 242, 197, 0.5);
    transform: translateY(-2px);
}

/* Server Info Minimal Styles */
.server-card-minimal {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(74, 242, 197, 0.1);
    overflow: hidden;
}

.server-header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(74, 242, 197, 0.1);
}

.server-title-minimal {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.server-icon-minimal {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(74, 242, 197, 0.2) 0%, rgba(74, 242, 197, 0.05) 100%);
    border: 1px solid rgba(74, 242, 197, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.server-title-minimal h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.server-subtitle-minimal {
    color: rgba(161, 166, 195, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.server-status-minimal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 242, 197, 0.2);
}

.status-indicator-minimal i {
    font-size: 0.6rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.server-status-minimal.online .status-indicator-minimal i {
    color: #22c55e;
}

.server-status-minimal.offline .status-indicator-minimal i {
    color: #ef4444;
}

.server-status-minimal.error .status-indicator-minimal i {
    color: #f59e0b;
}

.server-status-minimal.connecting .status-indicator-minimal i {
    color: var(--primary-color);
    animation: pulse 1.5s infinite;
}

.status-info-minimal {
    display: flex;
    align-items: center;
}

.status-info-minimal span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
}

/* Server Stats Minimal */
.server-stats-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card-minimal {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(74, 242, 197, 0.08);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card-minimal:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(74, 242, 197, 0.2);
    transform: translateY(-3px);
}

.stat-icon-minimal {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(74, 242, 197, 0.15) 0%, rgba(74, 242, 197, 0.05) 100%);
    border: 1px solid rgba(74, 242, 197, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.stat-content-minimal {
    flex: 1;
    min-width: 0;
}

.stat-label-minimal {
    color: rgba(161, 166, 195, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value-minimal {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Server Connection Minimal */
.server-connection-minimal {
    margin-bottom: 1.5rem;
}

.connection-item-minimal {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(74, 242, 197, 0.1);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.connection-label-minimal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(161, 166, 195, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.connection-label-minimal i {
    color: var(--primary-color);
    font-size: 1rem;
}

.connection-value-minimal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connection-value-minimal .ip-text {
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    background: rgba(74, 242, 197, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(74, 242, 197, 0.2);
}

.copy-btn-minimal {
    background: rgba(74, 242, 197, 0.1);
    border: 1px solid rgba(74, 242, 197, 0.3);
    color: var(--primary-color);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn-minimal:hover {
    background: rgba(74, 242, 197, 0.2);
    border-color: rgba(74, 242, 197, 0.5);
    transform: scale(1.1);
}

/* Server Actions Minimal */
.server-actions-minimal {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-connect-minimal,
.btn-info-minimal {
    flex: 1;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-connect-minimal {
    background: var(--gradient-primary);
    border: none;
    color: #000;
    box-shadow: 0 4px 15px rgba(74, 242, 197, 0.3);
}

.btn-connect-minimal:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 242, 197, 0.5);
}

.btn-info-minimal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 242, 197, 0.3);
    color: var(--primary-color);
}

.btn-info-minimal:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 242, 197, 0.5);
    transform: translateY(-3px);
}

/* Footer styles moved to footer.css */