* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0f1a, #1a1a3a);
    color: white;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff2e63;
    cursor: pointer;
    transition: 0.3s;
}

.logo:hover {
    color: #08d9d6;
    letter-spacing: 3px;
}

header nav {
    display: flex;
    gap: 25px;
}

header nav a {
    text-decoration: none;
    color: white;
    position: relative;
    transition: 0.3s;
}

header nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #ff2e63;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

header nav a:hover::after {
    width: 100%;
}

header nav a:hover {
    color: #08d9d6;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.hero {
    text-align: center;
    padding: 140px 20px;
}

.hero h1 {
    font-size: 55px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff2e63, #08d9d6);
    -webkit-background-clip: text;
    color: transparent;
    transition: 0.3s;
}

.hero h1:hover {
    letter-spacing: 3px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero button {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    background: #ff2e63;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    background: #08d9d6;
    box-shadow: 0 0 25px #08d9d6;
    transform: scale(1.05);
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 100px 20px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    width: 250px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.4s;
}

.feature:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 0 25px #ff2e63;
}

.section-title {
    text-align: center;
    margin: 80px 0 40px;
}

.section-title h2 {
    font-size: 40px;
    color: #ff2e63;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 40px 100px;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 25px 40px;
    border-radius: 20px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 0 25px #ff2e63;
    background: rgba(255,255,255,0.1);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 100px 20px;
    background: rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    transition: 0.3s;
}

.stat h2 {
    font-size: 40px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff2e63, #08d9d6);
    -webkit-background-clip: text;
    color: transparent;
}

.stat p {
    font-size: 18px;
    color: #ccc;
}

.stat:hover {
    transform: scale(1.2);
}

.newsletter {
    text-align: center;
    padding: 120px 20px;
}

.newsletter h2 {
    font-size: 35px;
    margin-bottom: 15px;
    color: #ff2e63;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ccc;
}

.subscribe {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe input {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    width: 250px;
    outline: none;
}

.subscribe button {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    background: #ff2e63;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe button:hover {
    background: #08d9d6;
    box-shadow: 0 0 20px #08d9d6;
}

footer {
    text-align: center;
    padding: 40px;
    background: rgba(0,0,0,0.6);
    color: #aaa;
}

@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 45px;
    }
    .cards {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    header nav {
        display: none;
        flex-direction: column;
        gap: 20px;
        background: rgba(0,0,0,0.9);
        position: absolute;
        top: 70px;
        right: 0;
        padding: 20px;
        border-radius: 10px;
    }
    header nav.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
        color: white;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 35px;
    }
    .hero p {
        font-size: 16px;
    }
    .feature {
        width: 90%;
    }
    .stats {
        flex-direction: column;
        gap: 40px;
    }
    .subscribe input {
        width: 70%;
    }
}