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

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: white;
    overflow-x: hidden;
}

/* Glassmorphism Effect */
.glass-header {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    text-align: center;
}

.logo {
    font-size: 2rem;
    color: #ff0077;
    margin-bottom: 10px;
}

.glass-header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.glass-header nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.glass-header nav a:hover {
    color: #00ffea; /* Change color on hover */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('hero-background.mp4') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.neon-text {
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
    animation: glow 2s infinite alternate;
}

.glow-text {
    color: #ff0077;
    font-size: 1.5rem;
    margin: 20px 0;
    text-shadow: 0 0 10px rgba(255, 0, 119, 0.7);
}

.glow-btn {
    background: linear-gradient(145deg, #ff0077, #e6006d);
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.glow-btn:hover {
    background: linear-gradient(145deg, #00ffea, #00e5e5);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Products Section */
.products {
    padding: 50px 20px;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.product-item img {
    max-width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    bottom: 0;
    width: 100%;
}