:root {
    --primary-color: #FF6B00;
    --secondary-color: #1A1A1A;
    --accent-color: #FF8533;
    --text-color: #FFFFFF;
    --dark-bg: #000000;
    --light-bg: #262626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/minecraft-server.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    border-bottom: 6px solid var(--primary-color);
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #FFA500);
    opacity: 0.8;
}

.header h1 {
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-small {
    font-size: 2.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.header-large {
    font-size: 4.5rem;
    background: linear-gradient(45deg, #FF6B00, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    position: relative;
    z-index: 1;
}

.header-large::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: -1;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
    opacity: 0.9;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.price-block {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.price-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    opacity: 0.9;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

@media (max-width: 768px) {
    .price-container {
        gap: 20px;
        padding: 0 20px;
    }
    
    .price-block {
        padding: 20px 30px;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
    }
}

/* Stats Section */
.stats {
    background-color: rgba(38, 38, 38, 0.97);
    padding: 80px 0;
    border-bottom: 6px solid var(--primary-color);
    backdrop-filter: blur(10px);
    position: relative;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #FFA500);
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: transform 0.3s;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary-color), #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto;
    }

    .stat-value {
        font-size: 2.8rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    background: rgba(38, 38, 38, 0.97);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.2);
}

.benefit-item:hover::before {
    opacity: 0.1;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    font-weight: 700;
}

.benefit-item p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
    padding: 80px 0;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.contact h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-telegram {
    display: flex;
    justify-content: center;
}

.telegram-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.telegram-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.telegram-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 20px 0;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .header-small {
        font-size: 1.8rem;
    }
    
    .header-large {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .stats-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
}
