* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-dark: rgba(10, 10, 12, 0.85);
    --bg-card: rgba(18, 18, 24, 0.8);
    --snap-yellow: #FFFC00;
    --snap-yellow-dim: #d4d100;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
}

body {
    background-color: #0a0a0c;
    background-image: linear-gradient(to bottom, rgba(10, 10, 12, 0.7), rgba(10, 10, 12, 0.95)), 
                      url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(255, 252, 0, 0.3), inset 0 0 10px rgba(255, 252, 0, 0.1); }
    50% { box-shadow: 0 0 25px rgba(255, 252, 0, 0.6), inset 0 0 15px rgba(255, 252, 0, 0.3); }
    100% { box-shadow: 0 0 10px rgba(255, 252, 0, 0.3), inset 0 0 10px rgba(255, 252, 0, 0.1); }
}

@keyframes textGlitch {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 252, 0, 0.5); }
    50% { text-shadow: 0 0 18px rgba(255, 252, 0, 0.8), 2px 2px 0px #000; }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 252, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    animation: textGlitch 3s infinite;
}

.logo span {
    color: var(--snap-yellow);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav a:hover, nav a.active {
    color: var(--snap-yellow);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--snap-yellow);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--snap-yellow);
}

nav a.active::after {
    width: 100%;
}

.tab-content {
    display: none !important;
    opacity: 0;
}

.tab-content.active-tab {
    display: flex !important;
    opacity: 1;
    animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px 20px;
    min-height: 75vh;
    flex-grow: 1;
}

.hero-badge {
    background: rgba(255, 252, 0, 0.1);
    border: 1px solid var(--snap-yellow);
    color: var(--snap-yellow);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 0 10px rgba(255, 252, 0, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--snap-yellow);
    text-shadow: 0 0 15px rgba(255, 252, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 36px;
    border: 2px solid var(--snap-yellow);
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    animation: pulseGlow 2.5s infinite;
}

.btn-discord:hover {
    background: var(--snap-yellow);
    color: #000;
    box-shadow: 0 0 35px var(--snap-yellow);
    transform: scale(1.05);
}

.faq-container {
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 100px 20px;
    flex-grow: 1;
    width: 100%;
}

.faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.faq-container h2 span {
    color: var(--snap-yellow);
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 252, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    width: 100%;
}

.faq-item:hover {
    border-color: var(--snap-yellow);
    box-shadow: 0 0 15px rgba(255, 252, 0, 0.1);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--snap-yellow);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

.download-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 75vh;
    flex-grow: 1;
    width: 100%;
}

.download-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 252, 0, 0.2);
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.download-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.download-card h2 span {
    color: var(--snap-yellow);
}

.download-card p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1.1rem;
    max-width: 450px;
}

.btn-download {
    display: inline-block;
    background: var(--snap-yellow);
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 252, 0, 0.4);
}

.btn-download:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 252, 0, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
    background: rgba(10, 10, 12, 0.8);
    margin-top: auto;
    width: 100%;
}

footer a {
    color: var(--snap-yellow);
    text-decoration: none;
}