:root {
    --ukraine-blue: #0057B8;
    --ukraine-yellow: #FFD700;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.highlight-blue { color: var(--ukraine-blue); }
.highlight-yellow { color: var(--ukraine-yellow); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ukraine-blue), #004494);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 87, 184, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--ukraine-yellow);
    color: var(--ukraine-yellow);
}

.btn-secondary:hover {
    background: var(--ukraine-yellow);
    color: var(--dark-bg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--ukraine-yellow);
}

/* Action Grid */
.actions {
    padding: 100px 0;
    background: var(--darker-bg);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    background: var(--card-hover);
    border-color: var(--ukraine-blue);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* Facts Section */
.facts {
    padding: 100px 0;
    position: relative;
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fact-list {
    list-style: none;
}

.fact-list li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.fact-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--ukraine-yellow);
    font-weight: bold;
}

.facts-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Online Resistance */
.online-war {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('online-war.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--ukraine-blue);
}

.step-card h3 {
    color: var(--ukraine-blue);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

/* Utility */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .facts-grid { grid-template-columns: 1fr; }
}
