/* Streamlet - Modern Video Streaming App Website */

:root {
    --primary-blue: #9DD8FF;
    --dark-blue: #2563eb;
    --accent-blue: #1e40af;
    --background-dark: #141414;
    --background-darker: #0a0a0a;
    --text-primary: #E2E2E2;
    --text-secondary: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    --gradient-dark: linear-gradient(135deg, var(--background-dark), var(--background-darker));
    --header-height: 84px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glass morphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Dynamic content boxes (news/changelog/privacy) */
.dynamic-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

/* Pagination (news/changelog) */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: var(--primary-blue);
    color: var(--background-dark);
}

.pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Admin login (scoped) */
body.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

body.admin-login .login-box {
    max-width: 400px;
    width: 100%;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

body.admin-login .login-box h1 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

body.admin-login .login-box form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.admin-login .login-box input {
    padding: .8rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: #1f1f1f;
    color: var(--text-primary);
}

body.admin-login .login-box button {
    padding: .9rem 1rem;
    border: none;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

body.admin-login .error {
    color: #ff6b6b;
    font-size: .9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(157, 216, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(157, 216, 255, 0.6); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(8px);
    min-height: var(--header-height);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
}

.logo-image {
    width: 48px;
    height: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: calc(100vh);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    padding-top: var(--header-height);
}

@media (max-width: 480px) {
    .hero {
        padding-top: 86px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%239DD8FF" stop-opacity="0.1"/><stop offset="100%" stop-color="%239DD8FF" stop-opacity="0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23a)"/></svg>');
    background-size: 100% 100%;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.alpha-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite;
}

.download-section {
    margin-top: 2rem;
}

.download-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.download-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.download-spacer {
    visibility: hidden;
}

.download-btn-image {
    display: block;
    border-radius: 15px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 56px;
    object-fit: contain;
}

.download-btn:hover .download-btn-image {
    color: var(--background-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(157, 216, 255, 0.3);
}

.download-btn.is-soon {
    pointer-events: none;
}

.download-btn.is-soon .download-btn-image {
    filter: opacity(0.5);
}

.download-btn-soon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    font-size: 1.7rem;
}

.download-btn i {
    font-size: 1.2rem;
}

.platform-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.platform-note small {
    font-size: 0.9rem;
}

.info-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.info-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border: 1px solid #5865f2;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.info-btn:hover {
    background: #5865f2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.phone-mockup {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.floating-screenshot {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    opacity: 1;
}

.floating-screenshot img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.floating-screenshot:hover {
    transform: scale(1.05) translateY(-5px);
}

.floating-screenshot:nth-child(1) {
    width: 200px;
    top: 0;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.floating-screenshot:nth-child(2) {
    width: 180px;
    top: 50px;
    right: -20px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.floating-screenshot:nth-child(3) {
    width: 160px;
    bottom: 100px;
    left: 20px;
    animation: float 3s ease-in-out infinite 1s;
}

.floating-screenshot:nth-child(4) {
    width: 140px;
    bottom: 0;
    right: 10px;
    animation: float 3s ease-in-out infinite 1.5s;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Screenshots Section */
.screenshots {
    padding: 5rem 0;
}

.screenshots-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.screenshot-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: scale(1.05);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    border-radius: 20px;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(157, 216, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay i {
    font-size: 3rem;
    color: white;
}

/* Privacy Policy Section */
.privacy-policy h1 {
    margin-top: 4rem;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-policy h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.privacy-policy h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.privacy-policy p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-policy ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-policy a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    gap: 0.5rem;
}

.privacy-policy a:hover {
    color: var(--primary-blue);
}

/* News Section */
.news {
    padding: 5rem 0;
    background: var(--background-darker);
}

/* Changes Section */
.changes {
    padding: 5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        margin-top: 0;
    }

    .nav-links.active {
        display: flex;
    }


    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .download-spacer {
        display: none;
    }

    .floating-screenshot {
        position: static !important;
        width: 100% !important;
        margin-bottom: 1rem;
        opacity: 1 !important;
    }

    .floating-screenshot img {
        width: 100%;
        height: auto;
    }

    .phone-mockup {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .privacy-policy h1 {
        font-size: 2rem;
    }

    .privacy-policy h2 {
        font-size: 1.5rem;
    }

    .privacy-policy h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 1rem;
    }

    .hero-content,
    .features-container,
    .screenshots-container,
    .footer-container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .download-btn {
        font-size: 0.9rem;
    }

    .download-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .privacy-policy h1 {
        font-size: 1.8rem;
    }

    .privacy-policy h2 {
        font-size: 1.3rem;
    }

    .privacy-policy h3 {
        font-size: 1.1rem;
    }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.gallery-modal.show {
    display: flex;
}

.gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-prev, .gallery-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery-prev {
    left: 0px;
}

.gallery-next {
    right: 0px;
    border-radius: 3px 0 0 3px;
}

.gallery-prev:hover, .gallery-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.gallery-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-close:hover, .gallery-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Footer */
footer {
    background: var(--background-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
/* Donation interstitial */
.donation-section {
    min-height: calc(100vh - var(--header-height) - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: calc(var(--header-height) + 2rem);
}

.donation-card {
    background: var(--background-darker);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 720px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.donation-icon {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
}

.donation-card h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.donation-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.donation-subtext {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.donation-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.donation-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--dark-blue);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.donation-btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(157, 216, 255, 0.3);
}

.donation-btn-back {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.donation-btn-back:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .donation-card {
        padding: 1.5rem;
    }
    .donation-card h2 {
        font-size: 1.25rem;
    }
}

/* Donation page – donate methods */
.donate-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
    text-align: center;
}

.donate-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a.donate-method:hover {
    background: rgba(157, 216, 255, 0.1);
    transform: translateY(-2px);
}

.donate-method img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    background: #fff;
    padding: 3px;
}

.donate-method .donate-label {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

.donate-method .donate-action {
    font-size: 0.8rem;
    color: var(--primary-blue);
    display: block;
}

a.donate-method .donate-action::after {
    content: ' \2197';
}

.donate-method .donate-addr {
    font-size: 0.6rem;
    color: var(--text-secondary);
    word-break: break-all;
    font-family: monospace;
    display: block;
    line-height: 1.3;
    padding: 0 0.25rem;
}

.donate-copy-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0;
    margin-top: 0.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
}

.donate-copy-btn:hover {
    color: var(--text-primary);
}

.donate-copy-btn::before {
    content: '\f0c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 0.75rem;
}

@media (max-width: 600px) {
    .donate-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    .donate-method img {
        width: 80px;
        height: 80px;
    }
}

/* Donation page – pick grid (linux formats etc.) */
.donation-pick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.donation-pick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 0.5rem;
    border-radius: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 100px;
}

.donation-pick-item i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.donation-pick-item span {
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
}

.donation-pick-item:hover {
    background: rgba(157, 216, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .donation-pick-grid {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-links a i {
    font-size: 1.1rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Show more link */
.show-more {
    text-align: center;
    margin-top: 1rem;
}

.show-more-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.show-more-link:hover {
    color: var(--primary-blue);
}

/* Section backgrounds alternating */
section:nth-child(even) {
    background: var(--background-darker);
}

section {
    scroll-margin-top: var(--header-height);
}

/* Modules section */
.modules {
    padding: 5rem 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    :root {
        --header-height: 72px;
    }
    .modules-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .5rem;
    }
}

.module-column h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news a, .changes a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news a:hover, .changes a:hover {
        color: var(--primary-blue);
}

.changes ul {
    margin-left: 2rem;
}

.news article {
    margin-bottom: 0.5rem;
}