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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    color: #d4d4d4;
    line-height: 1.6;
}

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

header {
    background: #222;
    padding: 16px 0;
    border-bottom: 1px solid #333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 36px;
    width: auto;
    border-radius: 8px;
}

.logo span {
    font-size: 22px;
    font-weight: 700;
    color: #e0e0e0;
}

.discord-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4d4d4;
    text-decoration: none;
    padding: 8px 18px;
    background: #2d2d2d;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.discord-link:hover {
    background: #3d3d3d;
    color: #fff;
}

.discord-link i {
    font-size: 18px;
}

.hero {
    padding: 120px 0 60px;
    text-align: center;
    background: #1a1a1a;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.hero h1 span {
    color: #7289da;
}

.hero p {
    font-size: 18px;
    color: #999;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 40px;
    background: #2d2d2d;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #3d3d3d;
    color: #fff;
}

.features {
    padding: 50px 0;
    background: #1f1f1f;
}

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

.feature {
    text-align: center;
    padding: 20px;
    background: #252525;
    border-radius: 6px;
}

.feature i {
    font-size: 28px;
    color: #7289da;
    margin-bottom: 8px;
}

.feature h3 {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.feature p {
    font-size: 13px;
    color: #888;
}

.tariffs {
    padding: 60px 0;
    background: #1a1a1a;
}

.tariffs h2 {
    text-align: center;
    font-size: 32px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.tariff {
    background: #222;
    padding: 25px 20px;
    border-radius: 6px;
    border: 1px solid #2d2d2d;
    display: flex;
    flex-direction: column;
}

.tariff:hover {
    border-color: #3d3d3d;
}

.tariff-name {
    font-size: 20px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.tariff-price {
    font-size: 28px;
    font-weight: 700;
    color: #7289da;
    margin-bottom: 15px;
}

.tariff-price span {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}

.tariff ul {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tariff ul li {
    padding: 6px 0;
    font-size: 14px;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #2a2a2a;
}

.tariff ul li:last-child {
    border-bottom: none;
}

.tariff ul li i {
    color: #7289da;
    width: 18px;
    font-size: 14px;
}

.btn-order {
    display: block;
    text-align: center;
    padding: 10px;
    background: #2d2d2d;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-order:hover {
    background: #3d3d3d;
    color: #fff;
}

footer {
    background: #151515;
    padding: 30px 0;
    border-top: 1px solid #222;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo img {
    height: 28px;
    width: auto;
    border-radius: 6px;
}

.footer-logo span {
    font-weight: 600;
    color: #bbb;
}

.footer-discord {
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.footer-discord:hover {
    color: #7289da;
}

.footer-copy {
    color: #666;
    font-size: 13px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .tariffs-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 10px;
    }
    
    .discord-link {
        width: 100%;
        justify-content: center;
    }
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}