* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: #0a0a0a;
    min-height: 100vh;
    position: relative;
}

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

/* Header */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #1f1f1f;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 1.8rem;
    color: #10b981;
}

.logo h1 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #9ca3af;
    font-weight: 400;
}

.router-icon {
    margin-top: 2rem;
}

.router-icon i {
    font-size: 4rem;
    color: #10b981;
    opacity: 0.8;
}

/* Password Section */
.password-section {
    background: #0f0f0f;
    padding: 80px 0;
}

.password-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.password-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #2a2a2a;
    max-width: 600px;
    margin: 0 auto;
}

.week-slider-container {
    margin-bottom: 2rem;
    text-align: center;
}

.week-slider-container label {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #10b981;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 25px;
    background: #2a2a2a;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.6);
}

.network-info {
    text-align: center;
}

.network-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.network-name {
    color: #10b981;
    font-weight: 700;
}

.password-box label {
    display: block;
    margin-bottom: 1rem;
    color: #9ca3af;
    font-size: 1.1rem;
}

.password-field {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0f0f0f;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #2a2a2a;
}

#wifi-password {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    flex: 1;
    letter-spacing: 1px;
}

.copy-btn {
    background: #10b981;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #059669;
    transform: scale(1.05);
}

/* Network Section */
.network-section {
    background: #0f0f0f;
    padding: 80px 0;
}

.network-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.network-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #2a2a2a;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.network-description {
    color: #9ca3af;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.terms-section {
    background: #0f0f0f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #fbbf24;
    margin-top: 2rem;
}

.terms-section h4 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.terms-section p {
    color: #e5e7eb;
    font-size: 1rem;
    margin: 0;
}

.terms-list {
    color: #e5e7eb;
    font-size: 0.95rem;
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.5;
}

.terms-list li {
    margin-bottom: 0.8rem;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.bonus-deal {
    color: #fbbf24 !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Access Section */
.access-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.access-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.access-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #2a2a2a;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.pricing-info {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.pricing-info h3 {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-info p {
    color: #9ca3af;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    background: #0f0f0f;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #10b981;
    background: #1a1a1a;
}

.submit-btn {
    background: #10b981;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.submit-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

.payment-info {
    background: #0f0f0f;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.payment-info p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.payment-info i {
    color: #10b981;
    margin-right: 8px;
}

/* Footer */
footer {
    background: #0f0f0f;
    padding: 40px 0;
    color: #6b7280;
    text-align: center;
    border-top: 1px solid #1f1f1f;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .password-card,
    .access-card {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .password-section h2,
    .access-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .password-card,
    .access-card {
        padding: 1.5rem;
    }
}