* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #0a1c3a;
    color: #d9e6ff;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="2" fill="%2300b7eb" opacity="0.3"/%3E%3Ccircle cx="150" cy="50" r="3" fill="%23ff0066" opacity="0.2"/%3E%3Ccircle cx="50" cy="150" r="2" fill="%2300b7eb" opacity="0.3"/%3E%3C/svg%3E') repeat;
    z-index: -1;
    animation: starfield 50s linear infinite;
}
@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-2000px); }
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px;
}
.hero {
    background: linear-gradient(135deg, #00b7eb, #0a1c3a);
    padding: 120px 30px;
    text-align: center;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 183, 235, 0.5);
    overflow: hidden;
}
.planet {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00b7eb, #0a1c3a);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotatePlanet 20s linear infinite;
    opacity: 0.2;
}
@keyframes rotatePlanet {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 72px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 183, 235, 0.8);
    margin-bottom: 25px;
    position: relative;
}
.hero p {
    font-size: 26px;
    margin-bottom: 40px;
    position: relative;
}
.cta-button {
    background: #ff0066;
    color: #ffffff;
    padding: 18px 60px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 0, 102, 0.7);
    transition: all 0.3s ease;
    position: relative;
}
.cta-button:hover {
    background: #00b7eb;
    box-shadow: 0 0 35px rgba(0, 183, 235, 0.9);
    transform: scale(1.1);
}
.section {
    padding: 100px 30px;
    text-align: center;
    position: relative;
}
.section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    color: #00b7eb;
    text-shadow: 0 0 15px rgba(0, 183, 235, 0.5);
    margin-bottom: 40px;
}
.slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px;
    scroll-behavior: smooth;
}
.slider::-webkit-scrollbar {
    height: 8px;
}
.slider::-webkit-scrollbar-thumb {
    background: #00b7eb;
    border-radius: 4px;
}
.skin-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    min-width: 280px;
    border: 1px solid rgba(0, 183, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skin-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 30px rgba(0, 183, 235, 0.6);
}
.skin-card img {
    max-width: 100%;
    border-radius: 12px;
}
.skin-card h3 {
    font-size: 24px;
    margin: 20px 0;
    color: #ffffff;
}
.skin-card p {
    color: #ff0066;
    font-weight: 700;
    font-size: 22px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px;
}
.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 183, 235, 0.3);
    transition: transform 0.3s ease;
}
.stat:hover {
    transform: scale(1.05);
}
.stat h3 {
    font-size: 36px;
    color: #00b7eb;
    margin-bottom: 10px;
}
.faq, .timeline, .guides {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item, .timeline-item, .guide-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 183, 235, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-item summary, .guide-item summary {
    padding: 20px;
    font-size: 20px;
    color: #00b7eb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after, .guide-item summary::after {
    content: '+';
    font-size: 24px;
}
.faq-item[open] summary::after, .guide-item[open] summary::after {
    content: '-';
}
.faq-item p, .guide-item p {
    padding: 20px;
    background: rgba(0, 183, 235, 0.1);
}
.timeline-item {
    padding: 20px;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #00b7eb;
}
.timeline-item h3 {
    font-size: 22px;
    color: #ff0066;
    margin-bottom: 10px;
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}
.badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 183, 235, 0.3);
    text-align: center;
    width: 150px;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 183, 235, 0.3);
    border-radius: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(0, 183, 235, 0.1);
    border: 1px solid #00b7eb;
    border-radius: 8px;
    color: #d9e6ff;
    font-size: 16px;
}
.contact-form button {
    background: #ff0066;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-form button:hover {
    background: #00b7eb;
    box-shadow: 0 0 20px rgba(0, 183, 235, 0.7);
}
.refund-policy, .contact, .policy-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    margin: 20px 0;
    border: 1px solid rgba(0, 183, 235, 0.3);
}
nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 28, 58, 0.9);
    padding: 20px;
    border-radius: 15px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 183, 235, 0.4);
}
nav a {
    display: block;
    color: #00b7eb;
    text-decoration: none;
    margin: 15px 0;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #ff0066;
}
footer {
    background: rgba(10, 28, 58, 0.9);
    padding: 50px;
    text-align: center;
    font-size: 16px;
    border-top: 1px solid rgba(0, 183, 235, 0.3);
}
footer a {
    color: #00b7eb;
    text-decoration: none;
}
footer a:hover {
    color: #ff0066;
}
h1, h2 {
    font-family: 'Rajdhani', sans-serif;
    color: #00b7eb;
}
a {
    color: #00b7eb;
    text-decoration: none;
}
a:hover {
    color: #ff0066;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
    .hero p {
        font-size: 20px;
    }
    .slider {
        flex-direction: column;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    nav {
        position: static;
        transform: none;
        text-align: center;
        padding: 15px;
        border-radius: 0;
    }
    nav a {
        display: inline-block;
        margin: 0 10px;
    }
}