* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

nav a {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

nav a.active {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
}

.meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 30px;
}

.version {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

h2 {
    font-size: 22px;
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

h2:first-of-type {
    border-top: none;
    margin-top: 0;
}

h3 {
    font-size: 18px;
    color: white;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 15px;
}

ul {
    list-style: none;
    margin: 15px 0;
}

ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
}

a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}

a:hover {
    color: white;
}

.footer-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Support page specific styles */
.support-intro {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

.contact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-email {
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.response-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 10px;
}

.faq-item {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Home page specific styles */
.welcome-section {
    text-align: center;
    padding: 60px 20px;
}

.welcome-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

.policy-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.policy-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.policy-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.policy-card h3 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 20px;
}

.policy-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .section {
        padding: 25px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 20px;
    }

    .logo {
        font-size: 28px;
    }

    .welcome-section h1 {
        font-size: 32px;
    }

    .welcome-section p {
        font-size: 16px;
    }

    .contact-email {
        font-size: 16px;
    }

    nav {
        gap: 10px;
    }

    nav a {
        padding: 10px 16px;
        font-size: 14px;
    }
}
