/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4a017;
    --primary-dark: #b8860b;
    --bg: #1a1a2e;
    --bg-light: #16213e;
    --text: #eee;
    --text-muted: #aaa;
    --success: #4caf50;
    --border: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid var(--primary);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Main content */
main {
    padding: 40px 0;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.hero h2 {
    color: var(--primary);
}

.hero p {
    max-width: 600px;
    margin: 15px auto;
    color: var(--text-muted);
}

/* Pricing section */
.pricing-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.tent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tent-card {
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tent-card:hover {
    border-color: var(--primary);
}

.tent-card h3 {
    margin-bottom: 10px;
}

.tent-card .price {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
}

.tent-card .description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 20px;
}

.tent-card .subscribe-btn {
    display: block;
    background: var(--primary);
    color: #000;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
}

.tent-card .subscribe-btn:hover {
    background: var(--primary-dark);
}


/* Features section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature h3 {
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ section */
.faq {
    max-width: 700px;
    margin: 0 auto;
}

details {
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 500;
}

summary:hover {
    background: rgba(255, 255, 255, 0.05);
}

details p {
    padding: 0 20px 15px;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: var(--bg-light);
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
}

footer a:hover {
    color: var(--primary);
}

footer p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 30px 15px;
    }

    .checkout-section {
        padding: 20px;
    }
}
