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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
}

/* Main content */
main {
    background: white;
    margin: 2rem auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Sections */
section {
    padding: 3rem 2rem;
    border-bottom: 1px solid #f0f0f0;
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Intro section */
.intro {
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

/* State grid */
.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.state-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.state-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.state-card.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.state-card.active a {
    color: white;
    text-decoration: none;
}

.state-card.active h3 {
    color: white;
}

.state-card.active p {
    color: rgba(255, 255, 255, 0.9);
}

.state-card.coming-soon {
    opacity: 0.6;
}

.state-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: white;
    color: #667eea;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.state-card.active:hover .button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.more-states {
    text-align: center;
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-top: 2rem;
}

/* How to steps */
.steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Podcast apps */
.apps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.app {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.app strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.app a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.app a:hover {
    text-decoration: underline;
}

/* About section */
.about ul {
    list-style: none;
    margin: 1.5rem 0;
}

.about li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.about li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

footer p {
    color: #666;
    margin-bottom: 0.5rem;
}

.legal {
    font-size: 0.9rem;
}

.legal a {
    color: #667eea;
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

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

    h2 {
        font-size: 1.5rem;
    }

    .state-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    section {
        padding: 2rem 1.5rem;
    }
}
