/* Design System & Variables */
:root {
    --bg-color: #060913;
    --text-primary: #f3f4f6;
    --text-secondary: #6b7280;
    --accent-color: #6366f1;
    --accent-gradient: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    width: 100%;
    height: 100%;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
}

/* Centered Wrapper */
.minimal-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    z-index: 1;
    width: 100%;
}

/* Minimal Identity Glyph Styles */
.mandala-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.identity-glyph {
    width: 100%;
    height: 100%;
    /* No glowing filters, pure geometry */
}

/* Hero Typography */
.hero-typography {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* Community Badge */
.badge-container {
    margin-bottom: 2rem;
}

.gdg-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gdg-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.gdg-icon {
    width: 16px;
    height: 16px;
    color: #4285f4; /* Google Blue */
}

.badge-meta {
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding-left: 0.5rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Minimal Links */
.links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.2rem 0;
    transition: var(--transition-smooth);
}

.nav-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.links a:hover .nav-icon {
    opacity: 1;
}

.links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

.links a:hover {
    color: var(--text-primary);
}

.links a:hover::after {
    width: 100%;
}

.separator {
    color: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    user-select: none;
}

/* Cyber Ticker */
.ticker-container {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0;
    position: relative;
    /* Gradient mask to fade out edges */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#center-mj {
    transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
}
