* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: #0d1117;
    color: #e0e0e0;
    overflow-x: hidden;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}
.hero {
    background: linear-gradient(135deg, #00ddeb, #ff6200);
    padding: 80px 20px;
    text-align: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.5);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    opacity: 0.3;
}
.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 221, 235, 0.8);
    margin-bottom: 20px;
    position: relative;
}
.hero p {
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
}
.cta-button {
    background: #00ddeb;
    color: #0d1117;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 221, 235, 0.7);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cta-button:hover {
    background: #ff6200;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 98, 0, 0.9);
    transform: translateY(-3px);
}
.section {
    padding: 60px 20px;
    text-align: center;
}
.section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #00ddeb;
    text-shadow: 0 0 5px rgba(0, 221, 235, 0.5);
    margin-bottom: 30px;
}
.marketplace {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}
.skin-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 221, 235, 0.2);
}
.skin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.5);
}
.skin-card img {
    max-width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 0 5px rgba(0, 221, 235, 0.3));
}
.skin-card h3 {
    font-size: 20px;
    margin: 15px 0;
    color: #ffffff;
}
.skin-card p {
    color: #ff6200;
    font-weight: 700;
    font-size: 18px;
}
.reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}
.review {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    width: 320px;
    border: 1px solid rgba(0, 221, 235, 0.2);
    transition: transform 0.3s ease;
}
.review:hover {
    transform: scale(1.05);
}
.refund-policy, .contact, .policy-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid rgba(0, 221, 235, 0.2);
}
.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.filters select {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid #00ddeb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.filters select:hover {
    border-color: #ff6200;
}
nav {
    position: sticky;
    top: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
}
nav a {
    color: #00ddeb;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #ff6200;
}
footer {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(0, 221, 235, 0.2);
}
footer a {
    color: #00ddeb;
    text-decoration: none;
}
footer a:hover {
    color: #ff6200;
}
h1, h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ddeb;
}
a {
    color: #00ddeb;
    text-decoration: none;
}
a:hover {
    color: #ff6200;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .marketplace {
        grid-template-columns: 1fr;
    }
    .review {
        width: 100%;
    }
    nav a {
        margin: 0 10px;
        font-size: 16px;
    }
}