* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
*, *::before, *::after {
    box-sizing: border-box;
}
:root {
    --primary: #00ff94;
    --secondary: #7c3aed;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --text: #ffffff;
    --text-muted: #a1a1a1;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: clamp(16px, 2.5vw, 18px);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(125deg, #0a0a0a 0%, #1a0033 50%, #0a0a0a 100%);
    opacity: 0.9;
}
.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.05;
    animation: pulse 20s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.05; }
    50% { transform: scale(1.2); opacity: 0.08; }
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.7);
    z-index: 1000;
    transition: all 0.3s ease;
}
nav.scrolled {
    padding: 15px 5%;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 255, 148, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
    text-decoration: none;
}
@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(0, 255, 148, 0.5)); }
    to { filter: drop-shadow(0 0 15px rgba(0, 255, 148, 0.8)); }
}
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
}
.urgent-announcement {
    position: relative;
    z-index: 2;
    margin: 137px auto 30px;
    width: min(1100px, 92%);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.25), rgba(255, 76, 76, 0.22));
    border: 2px solid rgba(255, 208, 0, 0.7);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.urgent-announcement-inner {
    border-radius: 16px;
    padding: 24px 26px;
    background: rgba(12, 12, 12, 0.86);
}
.urgent-announcement-kicker {
    margin: 0 0 8px;
    color: #ffd000;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.urgent-announcement h2 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    line-height: 1.25;
    background: linear-gradient(135deg, #fff4a8, #ffd000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.urgent-announcement p {
    margin: 0;
    color: #f3f3f3;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    font-weight: 500;
}
.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease 0.5s both;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1.5s ease 0.8s both;
}
.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 255, 148, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 148, 0.5);
}
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 255, 148, 0.3);
}
.section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}
.section.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}
.section.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
}
.section-subtitle-link,
.section-subtitle-link:link,
.section-subtitle-link:visited,
.section-subtitle-link:hover,
.section-subtitle-link:active,
.section-subtitle-link:focus,
.section-subtitle-link:focus-visible {
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #fff !important;
    font-weight: 600;
    margin-left: 6px;
    white-space: nowrap;
}
.section-subtitle-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.activity-card {
    background: linear-gradient(135deg, var(--dark-light), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 148, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.activity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 148, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 148, 0.2);
    border-color: var(--primary);
}
.activity-card:hover::before {
    opacity: 1;
}
.activity-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 148, 0.5));
}
.activity-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}
.activity-card p {
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}
.stat-box {
    padding: 30px;
    background: rgba(0, 255, 148, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 148, 0.2);
    transition: all 0.3s ease;
}
.stat-box:hover {
    background: rgba(0, 255, 148, 0.1);
    transform: scale(1.05);
}
.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}
.stat-label {
    color: var(--text-muted);
    font-size: 18px;
}
.goals-list {
    margin-top: 30px;
    padding-left: 0;
    list-style: none;
}
.goals-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(0, 255, 148, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 10px 10px 0;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.goals-list li:hover {
    background: rgba(0, 255, 148, 0.1);
    transform: translateX(10px);
}
.contact-content {
    background: linear-gradient(135deg, rgba(0, 255, 148, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(0, 255, 148, 0.2);
    text-align: center;
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.contact-item {
    color: var(--text-muted);
}
.contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-item a:hover {
    filter: brightness(1.3);
}
.membership-info {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 255, 148, 0.05));
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}
.membership-info h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.membership-info ul {
    list-style: none;
    padding: 0;
}
.membership-info li {
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.membership-info li:last-child {
    border-bottom: none;
}
.membership-info li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 10px;
}
footer {
    text-align: center;
    padding: 30px 5%;
    border-top: 1px solid rgba(0, 255, 148, 0.2);
    color: var(--text-muted);
    margin-top: 100px;
}
.footer-legal {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.7;
}
.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), #00d4ff);
    box-shadow: 0 4px 18px rgba(0, 255, 148, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.03em;
}
.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 255, 148, 0.55);
    filter: brightness(1.08);
}
.btn-support svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.btn-support:hover svg {
    transform: scale(1.2);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    border: 0;
    background: transparent;
    position: relative;
    z-index: 1001;
}
.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ── Strona Geneza ── */
.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 60px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}
.prose {
    max-width: 800px;
    margin: 0 auto;
}
.prose p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.prose p:first-child {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
}
.prose strong {
    color: var(--primary);
    font-weight: 600;
}
.timeline {
    position: relative;
    margin-top: 60px;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0.4;
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(0, 255, 148, 0.6);
}
.timeline-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.timeline-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.timeline-item p {
    color: var(--text-muted);
    line-height: 1.8;
}
.quote-block {
    border-left: 3px solid var(--secondary);
    border-radius: 0 12px 12px 0;
    background: rgba(124, 58, 237, 0.08);
    padding: 24px 30px;
    margin: 40px 0;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}
.quote-block cite {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--secondary);
}
.highlight-box {
    background: rgba(0, 255, 148, 0.05);
    border: 1px solid rgba(0, 255, 148, 0.2);
    border-radius: 16px;
    padding: 30px 35px;
    margin: 40px 0;
}
.highlight-box h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.highlight-box p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ── Responsive ── */
@media (min-width: 1440px) {
    .section { max-width: 1400px; }
}
@media (max-width: 1024px) {
    .activities-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 80px 5%; }
}
@media (max-width: 768px) {
    nav { padding: 15px 5%; }
    .urgent-announcement {
        margin: 119px auto 18px;
        width: calc(100% - 24px);
    }
    .urgent-announcement-inner {
        padding: 18px 16px;
    }
    .urgent-announcement h2 {
        margin-bottom: 8px;
    }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0; right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        backdrop-filter: blur(10px);
        animation: slideDown 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    @keyframes slideDown {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    .nav-links a { padding: 10px 0; font-size: 18px; }
    .hero { min-height: 100vh; padding: 0 20px; }
    h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .subtitle { font-size: 1.1rem; margin-bottom: 30px; padding: 0 10px; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .btn { width: 100%; max-width: 280px; padding: 12px 30px; font-size: 16px; }
    .section { padding: 60px 20px; }
    h2 { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .activities-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    .activity-card { padding: 25px; }
    .activity-icon { font-size: 36px; }
    .activity-card h3 { font-size: 20px; }
    .stats-container { grid-template-columns: 1fr; gap: 20px; }
    .stat-box { padding: 20px; }
    .stat-number { font-size: 36px; }
    .contact-content { padding: 30px 20px; }
    .contact-info { flex-direction: column; gap: 25px; text-align: center; }
    footer { padding: 30px 20px; margin-top: 60px; }
    .floating-shape { display: none; }
    .membership-info { padding: 25px 20px; }
    .page-hero { padding: 100px 20px 40px; }
    .timeline { padding-left: 20px; }
    .timeline-item { padding-left: 25px; }
    .quote-block { padding: 18px 20px; }
    .highlight-box { padding: 24px 20px; }
}
@media (max-width: 480px) {
    .logo { font-size: 18px; }
    .urgent-announcement p {
        font-size: 0.98rem;
        line-height: 1.6;
    }
    h1 { font-size: 1.8rem; line-height: 1.2; }
    .subtitle { font-size: 1rem; }
    h2 { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.95rem; }
    .activity-card { padding: 20px; }
    .btn { padding: 12px 25px; font-size: 15px; }
    .stat-number { font-size: 32px; }
    .stat-label { font-size: 16px; }
}
@media (max-width: 360px) {
    h1 { font-size: 1.6rem; }
    .nav-container { padding: 0; }
    .section { padding: 50px 15px; }
    .contact-content { padding: 25px 15px; }
}
@media (max-height: 600px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 100px 5% 60px; }
    h1 { font-size: 2.5rem; }
    .subtitle { margin-bottom: 20px; }
    .cta-buttons { flex-direction: row; }
    .btn { padding: 10px 25px; font-size: 14px; }
}
@media print {
    * { background: white !important; color: black !important; }
    nav, .floating-shape, .bg-animation { display: none !important; }
    .section { page-break-inside: avoid; }
}
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .hero-content { opacity: 1; transform: none; }
    .section { opacity: 1; transform: none; }
}
@media (prefers-contrast: high) {
    :root {
        --primary: #00ff00;
        --secondary: #ff00ff;
        --dark: #000000;
        --dark-light: #111111;
        --text: #ffffff;
        --text-muted: #cccccc;
    }
    .activity-card, .stat-box, .contact-content { border-width: 2px; }
}
@media (hover: none) and (pointer: coarse) {
    .nav-links a { padding: 12px 8px; }
    .btn { padding: 14px 35px; }
    .activity-card:hover { transform: none; }
}
.floating-shape {
    position: fixed;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}
.shape1 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    top: 10%; right: 10%;
    animation: float1 20s ease-in-out infinite;
}
.shape2 {
    width: 200px; height: 200px;
    background: var(--secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%; left: 5%;
    animation: float2 15s ease-in-out infinite;
}
@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -50px) scale(1.2); }
}

/* ===== NEWS SECTION ===== */
.news-announcement {
    max-width: 860px;
    margin: 24px auto 0;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 208, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.18), rgba(255, 76, 76, 0.12));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.news-announcement-heading {
    margin: 0 0 4px;
    color: #fff3b0;
    font-size: 0.9rem;
    font-weight: 700;
}
.news-announcement-kicker {
    margin: 0 0 6px;
    color: #ffd000;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.news-announcement-text {
    margin: 0;
    color: #f7f7f7;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
}
.news-card {
    background: var(--dark-light);
    border: 1px solid rgba(0, 255, 148, 0.12);
    border-radius: 20px;
    padding: 48px;
    max-width: 860px;
    margin: 40px auto 0;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0,255,148,0.05);
    transition: box-shadow 0.3s ease;
}
.news-card:hover {
    box-shadow: 0 16px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,255,148,0.12);
}

/* Header row */
.news-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.news-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 148, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 148, 0.2);
}
.news-date::before {
    content: '📅';
    font-size: 0.75rem;
}
.news-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(220, 38, 38, 0.12);
    color: #f87171;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

/* Lead */
.news-lead {
    background: rgba(0, 255, 148, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin-bottom: 28px;
}
.news-lead p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}
.news-lead strong {
    color: var(--primary);
}

/* Body */
.news-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}
.news-body p {
    color: #c8c8c8;
    font-size: 0.97rem;
    line-height: 1.85;
    margin: 0;
}
.news-body strong {
    color: var(--text);
    font-weight: 600;
}
.news-highlight {
    color: var(--text) !important;
    font-style: italic;
    font-weight: 500 !important;
    font-size: 1rem !important;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* CTA box */
.news-cta-box {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 32px;
}
.news-cta-heading {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.6;
}
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #c8c8c8;
    font-size: 0.95rem;
    line-height: 1.7;
    background: rgba(255,255,255,0.03);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}
.news-list-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Closing */
.news-closing {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}
.news-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.news-invite {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.news-org {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Actions */
.news-actions {
    display: flex;
    justify-content: center;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}
.btn-download svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.btn-download:hover svg {
    transform: translateY(3px);
}

@media (max-width: 768px) {
    .news-announcement {
        padding: 16px 18px;
    }
    .news-announcement-text {
        font-size: 0.95rem;
    }
    .news-card {
        padding: 24px 20px;
    }
    .news-cta-box {
        padding: 20px;
    }
    .news-header {
        flex-wrap: wrap;
    }
}
