/* Global styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary {
    background: #1db954;
    color: #fff;
}

.btn-primary:hover {
    background: #1ed760;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 4rem 1rem;
}

.feature-card {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #1db954;
}

.feature-card p {
    font-size: 1rem;
    color: #ccc;
}

/* Pricing */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 4rem 1rem;
}

.pricing-card {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    border: 2px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #1db954;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1db954;
}

.pricing-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #1e1e1e;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .features, .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }
}
