* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Lighter Green Dark Theme */
    --bg-dark: #0f291e;
    --bg-card: #163628;
    --border: #244f3b;
    --text-main: #ffffff;
    --text-muted: #9dc4b0;
    --accent: #2ecc71;
    --accent-hover: #27ae60;
    --accent-glow: rgba(46, 204, 113, 0.15);
    --nav-glass: rgba(15, 41, 30, 0.95);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* ICONS & LOGOS (Fixed Sizes) */
.nav-logo img {
    height: 32px;
    width: 32px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #0a1f16;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: opacity 0.2s;
}

.btn-secondary:hover {
    opacity: 0.8;
}

.full-width {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    margin-top: 10px;
}

/* HERO */
.hero {
    padding: 120px 20px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    padding: 4px 12px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* SECTIONS & CARDS */
.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-main);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 24px;
    margin-top: -16px;
    font-size: 0.95rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.about-card {
    padding: 32px;
}

.about-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--accent);
    font-weight: 500;
}

/* GRID & APPS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.app-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.app-img-wrapper {
    height: 160px;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.app-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.3s;
}

.app-card:hover .app-img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* FORMS */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.support-card {
    padding: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input, select, textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.2s;
}

/* Custom Select Arrow */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239dc4b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center; /* Moved from 16px to 24px */
    background-size: 16px;
    padding-right: 56px; /* Increased padding to prevent overlap */
    cursor: pointer;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.flag-icon {
    width: 20px;
    height: 14px;
    vertical-align: middle;
    margin-left: 4px;
    border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-content {
        padding: 14px 20px;
    }
    
    .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 0.85rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .support-card, .about-card {
        padding: 24px;
    }
    
    .hero {
        padding-top: 100px;
    }
}