:root {
    --bg: #050505;
    --accent: #ff007a;
    --primary: #00f2ff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 15px 40px; box-sizing: border-box; font-family: 'Inter', sans-serif; border-radius: 50px;}

body {
    background-color: var(--bg);
    color: white;
    overflow-x: hidden;
}

#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 30px 8%;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; }
.logo span { color: var(--accent); }

.cta-glass {
    background: var(--glass);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: white;
    backdrop-filter: blur(10px);
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.badge {
    background: rgba(255, 0, 122, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 1px solid var(--accent);
}

h1 {
    font-size: 5rem;
    margin-top: 20px;
    line-height: 1;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-btns { margin-top: 40px; display: flex; gap: 20px; }

.btn-main {
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    background: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-main:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--primary); }

/* Slider Section */
.slider-section { padding: 100px 8%; }
.slider-header { display: flex; justify-content: space-between; margin-bottom: 50px; }

.slider-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glass-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    transition: 0.5s ease;
    cursor: pointer;
}

.glass-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.5s;
}

.glass-card:hover img { opacity: 1; transform: scale(1.1); }

.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}