/* header-content.css */

.header__content {
    width: 100%;
    padding: 60px 0 140px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1240px) {
    .header__content {
        padding: 40px 0 80px;
    }
}

@media (max-width: 768px) {
    .header__content {
        padding: 30px 0 60px;
    }
}

.header__content .content-area {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (max-width: 1240px) {
    .header__content .content-area {
        gap: 40px;
    }
}

/* Hero Section */
.header__hero {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

@media (max-width: 1680px) {
    .header__hero {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }
}

@media (max-width: 1240px) {
    .header__hero {
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .header__hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Announcement */
.header__announcement {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 1024px) {
    .header__announcement {
        text-align: center;
    }
}

.header__announcement h1 {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 50px;
    line-height: 1.1;
    margin: 0;
}

@media (max-width: 1680px) {
    .header__announcement h1 {
        font-size: 50px;
    }
}

@media (max-width: 1240px) {
    .header__announcement h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .header__announcement h1 {
        font-size: 33px;
    }
}

.header__announcement-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.header__announcement-text p {
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 26px;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1680px) {
    .header__announcement-text p {
        font-size: 24px;
    }
}

@media (max-width: 1240px) {
    .header__announcement-text p {
        font-size: 22px;
    }
}

/* Stats Badges */
.header__stats-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 1240px) {
    .header__stats-badges {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .header__stats-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.header__stat-badge {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 1240px) {
    .header__stat-badge {
        padding: 16px 12px;
    }
}

@media (max-width: 768px) {
    .header__stat-badge {
        padding: 18px 14px;
    }
}

.header__stat-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 227, 23, 0.15), transparent);
    transition: left 0.6s ease;
}

.header__stat-badge:hover::before {
    left: 100%;
}

.header__stat-badge:hover {
    border-color: rgba(46, 227, 23, 0.6);
    transform: translateY(-3px);
}

.header__stat-badge-value {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    color: #2fe317;
    margin-bottom: 8px;
}

@media (max-width: 1240px) {
    .header__stat-badge-value {
        font-size: 30px;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .header__stat-badge-value {
        font-size: 32px;
    }
}

.header__stat-badge-label {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    color: #bbb4ac;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .header__stat-badge-label {
        font-size: 12px;
    }
}

/* Server Info Card */
.header__server-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1240px) {
    .header__server-card {
        padding: 25px;
    }
}

@media (max-width: 1024px) {
    .header__server-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

.header__server-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 227, 23, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.header__server-card-title {
    text-align: center;
    margin-bottom: 20px;
}

.header__server-card-title h3 {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 1240px) {
    .header__server-card-title h3 {
        font-size: 19px;
    }
}

.header__server-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.header__server-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

@media (max-width: 1240px) {
    .header__server-item {
        padding: 10px 12px;
    }
}

.header__server-item:hover {
    background: rgba(46, 227, 23, 0.08);
    border-left-color: #2fe317;
    transform: translateX(3px);
}

.header__server-item-name {
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    color: #cdcac8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

@media (max-width: 1240px) {
    .header__server-item-name {
        font-size: 11px;
    }
}

.header__server-item-value {
    font-family: "Gilroy";
    font-weight: 800;
    font-size: 20px;
    line-height: 1.2;
    color: #2fe317;
}

@media (max-width: 1240px) {
    .header__server-item-value {
        font-size: 18px;
    }
}

.header__server-item-note {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: #6e6a68;
    margin-top: 3px;
    line-height: 1.2;
}

/* Timer Block */
.header__timer-wrapper {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1240px) {
    .header__timer-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .header__timer-wrapper {
        padding: 25px 20px;
    }
}

.header__timer-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 227, 23, 0.08) 0%, transparent 70%);
    animation: timerPulse 4s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.header__timer-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .header__timer-header {
        margin-bottom: 25px;
    }
}

.header__timer-badge {
    display: inline-block;
    background: linear-gradient(181deg, #2fe317 0%, #1a8f0d 100%);
    color: #000;
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .header__timer-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
}

.header__timer-heading {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 1240px) {
    .header__timer-heading {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .header__timer-heading {
        font-size: 22px;
    }
}

.header__timer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .header__timer-content {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .header__timer-content {
        gap: 8px;
    }
}

.header__timer-item {
    flex: 0 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(46, 227, 23, 0.3);
    border-radius: 12px;
    padding: 20px 15px;
    min-width: 110px;
    transition: all 0.3s ease;
}

@media (max-width: 1240px) {
    .header__timer-item {
        min-width: 90px;
        padding: 16px 12px;
    }
}

@media (max-width: 768px) {
    .header__timer-item {
        min-width: 70px;
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .header__timer-item {
        min-width: 60px;
        padding: 10px 6px;
    }
}

.header__timer-item:hover {
    border-color: rgba(46, 227, 23, 0.6);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(46, 227, 23, 0.2);
}

.header__timer-item-content {
    text-align: center;
}

.header__timer-num {
    font-family: "Gilroy";
    font-weight: 900;
    font-size: 48px;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, #2fe317 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

@media (max-width: 1240px) {
    .header__timer-num {
        font-size: 38px;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .header__timer-num {
        font-size: 30px;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .header__timer-num {
        font-size: 24px;
    }
}

.header__timer-type {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    color: #bbb4ac;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .header__timer-type {
        font-size: 10px;
    }
}

.header__timer-sep {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: relative;
}

@media (max-width: 480px) {
    .header__timer-sep {
        display: none;
    }
}

.header__timer-sep::before,
.header__timer-sep::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #2fe317;
    border-radius: 50%;
    animation: dotBlink 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .header__timer-sep::before,
    .header__timer-sep::after {
        width: 4px;
        height: 4px;
    }
}

.header__timer-sep::after {
    animation-delay: 0.3s;
}

@keyframes dotBlink {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}