/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    min-height: 100vh;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #64ffda;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #bb86fc;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #cf6679;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 2rem auto 0;
    color: #b3b3b3;
    line-height: 1.8;
}

/* Section Styles */
section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hosted Sites Section */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.site-card {
    background: rgba(30, 30, 60, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.site-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.site-card h3 {
    color: #64ffda;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.site-card p {
    color: #b3b3b3;
    font-size: 0.95rem;
}

.site-card.coming-soon {
    border-style: dashed;
    border-color: rgba(187, 134, 252, 0.4);
    background: rgba(50, 30, 70, 0.4);
}

.coming-soon h3 {
    color: #bb86fc;
}

/* Pricing Section */
.pricing {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem 0;
    border-radius: 15px;
    margin: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(40, 40, 80, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 255, 218, 0.5);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.15);
}

.pricing-card.premium {
    border-color: rgba(187, 134, 252, 0.4);
    background: rgba(60, 40, 90, 0.8);
}

.pricing-card.premium:hover {
    border-color: rgba(187, 134, 252, 0.7);
    box-shadow: 0 15px 40px rgba(187, 134, 252, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #bb86fc, #cf6679);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(187, 134, 252, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #64ffda;
}

.premium .amount {
    color: #bb86fc;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: #b3b3b3;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 0.7rem 0;
    font-size: 1rem;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.plan-type {
    font-size: 0.9rem;
    color: #b3b3b3;
    font-style: italic;
}

/* Contact Section */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: rgba(30, 30, 60, 0.6);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(207, 102, 121, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 102, 121, 0.4);
    box-shadow: 0 10px 30px rgba(207, 102, 121, 0.1);
}

.contact-card h3 {
    color: #cf6679;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: #b3b3b3;
    line-height: 1.7;
}

.contact-note {
    background: rgba(20, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #64ffda;
    margin-top: 2rem;
}

.contact-note p {
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-note ul {
    color: #b3b3b3;
    padding-left: 1.5rem;
}

.contact-note li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 2.5rem 0;
        margin: 1rem 0;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    section {
        margin: 3rem 0;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .pricing-card {
        padding: 1.2rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .contact-note {
        padding: 1.5rem;
    }
}
