/* Mobile-specific styles for better title handling */
@media (max-width: 480px) {
    .main-title {
        font-size: 1.8em !important;
        letter-spacing: -0.5px !important;
        line-height: 1.1 !important;
        word-break: break-word;
        hyphens: auto;
    }
    
    .subtitle {
        font-size: 1.4em !important;
    }
    
    .header-container {
        padding: 20px !important;
    }
}

@media (max-width: 360px) {
    .main-title {
        font-size: 1.6em !important;
    }
    
    .subtitle {
        font-size: 1.2em !important;
    }
}

/* Body styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

/* Header styles */
.header-container {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-title {
    margin: 0;
    font-size: 2.5em;
    font-weight: 300;
    letter-spacing: -1px;
}

.subtitle {
    margin: 10px 0 0 0;
    font-size: 1.8em;
    font-weight: 400;
    opacity: 0.9;
}

.header-tagline {
    margin-top: 20px;
    font-size: 1.1em;
    opacity: 0.9;
}

.header-dates {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Main content */
main {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Section styles */
section {
    margin-bottom: 35px;
}

section h2 {
    color: #667eea;
    border-bottom: 3px solid #667eea;
    padding-bottom: 8px;
    margin-bottom: 20px;
    font-size: 1.4em;
}

section h3 {
    color: #4a5568;
    margin: 25px 0 15px 0;
    font-size: 1.2em;
}

section p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

section p:last-child {
    margin-bottom: 0;
}

section ul {
    padding-left: 20px;
    margin-bottom: 0;
}

section ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

section ul li:last-child {
    margin-bottom: 0;
}

/* Call-to-action section */
.cta-section {
    text-align: center;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #4a5568;
}

/* App Store button */
.app-store-btn {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-btn img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

/* Info boxes */
.info-box {
    background: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin-bottom: 0;
}

.info-box-blue {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin-bottom: 20px;
}

.info-box-blue p {
    margin: 0;
    font-weight: 600;
    color: #2c5282;
    font-size: 1.1em;
}

.info-box-green {
    background: #f0fff4;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
    margin-bottom: 20px;
}

.info-box-green p {
    margin: 0;
    font-weight: 600;
    color: #276749;
    font-size: 1.1em;
}

.info-box-orange {
    background: #fef5e7;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ed8936;
    margin-bottom: 0;
}

.info-box-orange p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.8;
}

.info-box-orange a {
    color: #ed8936;
    text-decoration: none;
}

.info-box ul {
    padding-left: 20px;
    margin: 0;
}

/* Highlight section */
.highlight-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 30px;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.highlight-section h2 {
    color: white;
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.highlight-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    opacity: 0.95;
}

.highlight-section p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Navigation links */
.nav-links {
    text-align: center;
    margin-top: 30px;
}

.nav-links a {
    color: #667eea;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1em;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
    font-size: 0.9em;
}

footer p {
    margin: 0;
}
