/* Meidin Global Styles */
:root {
    --green: #c8ff78;
    --green-bright: #d4ff8a;
    --black: #202020;
    --black-dark: #0f0f0f;
    --gray: #333;
    --gray-light: #888;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--black-dark);
    color: white;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(200, 255, 120, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(200, 255, 120, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(200, 255, 120, 0.15);
    top: -10%;
    right: -10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(200, 255, 120, 0.1);
    bottom: 20%;
    left: -15%;
}

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

/* Header */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray);
    position: relative;
    z-index: 10;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    color: var(--green);
    text-decoration: none;
}

.site-header nav {
    display: flex;
    gap: 25px;
}

.site-header nav a {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s;
}

.site-header nav a:hover {
    color: var(--green);
}

.site-header nav .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: var(--black);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}

.site-header nav .btn-download:hover {
    background: var(--green-bright);
    color: var(--black);
}

.site-header nav .btn-download svg {
    width: 14px;
    height: 14px;
}

/* Main Content */
main {
    flex: 1;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid var(--gray);
}

.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer p {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--gray-light);
}

.site-footer p a {
    color: var(--green);
    text-decoration: none;
}

.site-footer .footer-links {
    display: flex;
    gap: 20px;
}

.site-footer .footer-links a {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-links a:hover {
    color: var(--green);
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .site-header nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-footer .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}