* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    min-height: 100vh;
    color: #333;
}

.header {
    background: #1e88e5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo svg {
    width: 50px;
    height: 50px;
}

.logo h1 {
    color: white;
    font-size: 1.8em;
}

.logo h1 span {
    color: #ffd700;
}

.top-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-menu a {
    background: white;
    color: #1e88e5;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-menu a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.radio-link {
    background: #ff5252 !important;
    color: white !important;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: white;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.entry-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.entry-btn {
    background: white;
    color: #1e88e5;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.entry-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.entry-btn.mobile {
    background: #4caf50;
    color: white;
}

.features {
    background: white;
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #1e88e5;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f5f7fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.3);
    border-color: #1e88e5;
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #1e88e5;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

.stats {
    background: #e3f2fd;
    color: #1565c0;
    padding: 60px 20px;
    text-align: center;
}

.stats-content {
    font-size: 1.5em;
    margin: 20px 0;
    opacity: 0.95;
}

.cities-section {
    background: white;
    padding: 60px 20px;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.city-btn {
    background: #f5f7fa;
    color: #1e88e5;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    display: block;
    font-size: 0.95em;
}

.city-btn:hover {
    background: #E30A17;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 10, 23, 0.3);
    border-color: #E30A17;
}

@media (max-width: 768px) {
    .cities-list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .city-btn {
        font-size: 0.85em;
        padding: 10px 12px;
    }
}

.footer {
    background: #263238;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-ads {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-ad {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ad-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    min-width: 200px;
}

.ad-banner.supermekan {
    background: linear-gradient(135deg, #ff5252 0%, #ff1744 100%);
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.ad-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.ad-icon {
    font-size: 2.5em;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.ad-text {
    flex: 1;
    text-align: left;
}

.ad-title {
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ad-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #64b5f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #37474f;
    color: #90a4ae;
}

.footer-signature strong {
    color: #64b5f6;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2em;
    }
    
    .entry-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .entry-btn {
        width: 90%;
    }
}

