/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #f5f5f5;
}

/* Header */
h1 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

th {
    background: #2d3748;
    color: white;
    font-weight: 600;
}

tr:hover {
    background: #f7fafc;
}

/* Links */
a {
    color: #4299e1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: 3rem;
    text-align: center;
    color: #718096;
}

/* Handle List */
.handle-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.handle-list a {
    display: block;
}

/* Section Titles */
.section-title {
    text-align: center;
    color: #2d3748;
    margin: 3rem 0 2rem;
}

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

.stat {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-label {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Back Link */
.back-link {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

/* Newsletter Container */
.newsletter-container {
    margin-bottom: 3rem;
}

.newsletter-container iframe {
    width: 100%;
    height: 320px;
    border-radius: 4px;
    border: 2px solid #e5e7eb;
    margin: 0;
    background-color: transparent;
}

/* Header Container */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Maker Details */
.maker-details {
    margin: 2rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Add to existing CSS */
.header .description {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 90%;
    padding: 0 1rem;
    line-height: 1.6;
    width: auto;
    text-align: center;
    color: #4a5568;
}

/* Tablet and up */
@media (min-width: 768px) {
    .header .description {
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
        margin-bottom: 2rem;
        max-width: 80%;
        padding: 0 3rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .header .description {
        margin-left: 15%;
        margin-right: 15%;
        margin-top: 3rem;
        margin-bottom: 3rem;
        max-width: 70%;
        padding: 0;
    }
}

/* Large desktop */
@media (min-width: 1440px) {
    .header .description {
        margin-left: 20%;
        margin-right: 20%;
        margin-top: 4rem;
        margin-bottom: 4rem;
        max-width: 60%;
    }
}
