
:root {
    --bg: #0a0a0f;
    --card: #13131a;
    --card-border: #1e1e2a;
    --purple: #7c5bf5;
    --green: #34d399;
    --text: #f0f0f5;
    --text-muted: #8888a0;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

nav {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    padding: 1.5rem 2rem;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { height: 22px; }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--purple); }

.app-link {
    background: var(--purple);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.hero {
    padding: 4rem 2rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.color-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.main-color {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    border: 3px solid var(--card-border);
}

.hex-code {
    font-family: monospace;
    color: var(--purple);
    font-size: 1.25rem;
    margin-top: 1rem;
    display: block;
}

.buy-card {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.buy-card h3 { color: white; margin-bottom: 1rem; }

.amazon-button {
    background: white;
    color: #232F3E;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.alternatives-table {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: rgba(124, 91, 245, 0.1);
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    color: var(--purple);
}

td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(30, 30, 42, 0.5);
}

.color-swatch {
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 6px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.btn-buy {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.faq-section { margin-bottom: 3rem; }
.faq-section h2 { text-align: center; margin-bottom: 2rem; }

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
}

.faq-item h3 {
    color: var(--purple);
    margin-bottom: 1rem;
}

footer {
    margin-top: 6rem;
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--card-border);
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .nav-links a:not(.app-link) { display: none; }
    .main-color { width: 150px; height: 150px; }
}
