/* Space Theme - Pure Black Background */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Starfield Background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.8;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header - Minimal */
.header {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 40px;
    height: 40px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.logo-e {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.brand-name {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Main Content */
.main {
    position: relative;
    z-index: 1;
}

/* Hero Section - Minimal */
.hero {
    padding: 60px 0 40px;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    color: #888888;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Map Section - Full width, centered */
.map-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#maharashtraMap {
    display: block;
    max-width: 100%;
    height: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

/* Map Label */
.map-label {
    font-size: 14px;
    color: #ff0000;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 20px;
}

/* Product Section */
.product-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: #888888;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.product-description {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.launch-status {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 24px;
    border: 1px solid #333;
    border-radius: 4px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-text {
    font-size: 12px;
    color: #888888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Contact Section */
.contact-section {
    padding: 60px 0 100px;
    text-align: center;
}

.contact-text {
    font-size: 14px;
    color: #888888;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.email-link {
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.email-link:hover {
    color: #ff0000;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #111;
}

.footer p {
    color: #444;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .product-description {
        font-size: 24px;
    }
    
    .map-section {
        min-height: 50vh;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .product-description {
        font-size: 20px;
    }
    
    .email-link {
        font-size: 16px;
    }
}
