

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 40px 20px;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #f7971e, #ffd200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

h2 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #f7971e, #ffd200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

img {
    width: 250px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    margin: 0 auto 30px auto;
    text-align: center;
    display: flex;
    width: 800px;
}

.project {
    background-color: #161533;
    border-radius: 50px;
    display:grid;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    padding: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.project_count {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
    
}

.subtitle {
    font-size: 18px;
    color: #a0aec0;
    margin-top: 8px;
    letter-spacing: 2px;
}

.badge {
    display: inline-block;
    background: rgba(247, 151, 30, 0.2);
    border: 1px solid #f7971e;
    color: #ffd200;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 12px;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f7971e, #ffd200);
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffd200;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title .emoji {
    font-size: 24px;
}

.section-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 24px;
    border-left: 3px solid #f7971e;
    line-height: 1.7;
    color: #e2e8f0;
}

.section-content p {
    margin-bottom: 10px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.logo-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 10px;
}

.tariff-card {
    display: grid;
    background-color: #19192e;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.tariff-card:hover {
    transform: translateY(-4px);
    border-color: #f7971e;
    box-shadow: 0 8px 25px rgba(247, 151, 30, 0.15);
}

.tariff-card .name {
    font-weight: 700;
    font-size: 16px;
    color: #ffd200;
}

.tariff-card .specs {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 6px;
}

.tariff-card .specs span {
    display: block;
}

.tariff-card .note {
    font-size: 11px;
    color: #fc8181;
    margin-top: 6px;
}

.tariffs-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;

}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.btn {
    background: #16213e;
    border-radius: 10px;
    align-items: center;
    display: inline-flex;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f7971e, #ffd200);
    color: #0a0a0a;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(247, 151, 30, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-donate {
    background: linear-gradient(135deg, #e53e3e, #fc8181);
    color: #ffffff;
}

.btn-donate:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.3);
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.achievement {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.achievement .icon {
    font-size: 28px;
}

.achievement .label {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 4px;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: #718096;
}

.footer a {
    color: #ffd200;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
            .container {
                padding: 20px;
            }

            h1 {
                font-size: 32px;
            }

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

            .links {
                flex-direction: column;
            }

            .btn {
                justify-content: center;
            }
        }