body {
    background: #170801;
    font-family: 'Acrom', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero {
    background: url('/images/start_section_bg.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 100vh;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(255, 196, 1, 0.1) 0%, rgba(255, 109, 1, 0.1) 100%);
}

.btn-antiac {
    background: linear-gradient(93.19deg, #ffc801, #ff6d01);
    border-radius: 3px 15px;
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    text-decoration: none;
}

.btn-antiac:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 148, 1, 0.4);
}

.btn-antiac-secondary {
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    cursor: pointer;
}

.btn-antiac-secondary:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.gamemode-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.gamemode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gamemode-card .icon-container {
    transition: all 0.3s ease;
}

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

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.stats-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 174, 57, 0.3);
    transform: translateY(-3px);
}

.quick-links-section {
    background: linear-gradient(135deg, rgba(255, 196, 1, 0.1) 0%, rgba(255, 109, 1, 0.1) 100%);
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.copy-success {
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.1) !important;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .btn-antiac,
    .btn-antiac-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .stats-card {
        padding: 16px;
    }
    
    .quick-link-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 70vh;
        background-position: center;
    }
    
    .btn-antiac,
    .btn-antiac-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.news-card-home {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.news-card-home:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 174, 57, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.news-image-home {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-home:hover .news-image-home img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.news-content-home {
    padding: 1.5rem;
}

.news-header-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-badge-home {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-date-home {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

.news-title-home {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.news-title-home a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title-home a:hover {
    color: #ffae39;
}

.news-excerpt-home {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info-home {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name-home {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
}

.reading-time-home {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffae39;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.read-more-btn:hover {
    color: #ffc801;
    transform: translateX(3px);
}

.read-more-btn svg {
    transition: transform 0.3s ease;
}

.read-more-btn:hover svg {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .news-card-home {
        margin-bottom: 2rem;
    }
    
    .news-content-home {
        padding: 1.25rem;
    }
    
    .news-title-home {
        font-size: 1.125rem;
    }
    
    .news-meta-home {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .read-more-btn {
        align-self: flex-end;
    }
}

.news-card-home {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.news-card-home:nth-child(1) { animation-delay: 0.2s; }
.news-card-home:nth-child(2) { animation-delay: 0.4s; }
.news-card-home:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.status-online {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.status-offline {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

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

.hero-back-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 174, 57, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-back-btn:hover {
    background: rgba(255, 174, 57, 0.15);
    border-color: rgba(255, 174, 57, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 174, 57, 0.2);
}

.hero-back-btn .back-arrow {
    transition: transform 0.3s ease;
}

.hero-back-btn:hover .back-arrow {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .hero-back-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .hero-back-btn .back-arrow {
        width: 18px;
        height: 18px;
    }
}

.network-stat-value {
    font-family: 'Courier New', monospace;
    letter-spacing: -0.02em;
    transition: all 0.5s ease;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.network-stat-value.updating,
.stats-number.updating {
    animation: numberPulse 0.5s ease;
}

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

#refresh-icon.spinning {
    animation: spin 1s linear;
}

.fa-spinner.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#last-update-container {
    animation: fadeIn 0.5s ease;
}

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