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

body {
    background: #0d0015;
    font-family: 'Poppins', sans-serif;
    color: #ffe4f2;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 105, 180, 0.3);
    margin-bottom: 30px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 0 20px #ff69b4;
}

.logo-text h1 {
    font-size: 2rem;
    background: linear-gradient(45deg, #ffb6c1, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px #ff69b4;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.9rem;
    color: #ffb6c1;
}

.nav-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffb6c1;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    border-color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
    color: #ff1493;
}

/* Dashboard Image */
.dashboard-image {
    margin-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
    border: 1px solid rgba(255, 105, 180, 0.5);
    background: rgba(255, 105, 180, 0.1);
    backdrop-filter: blur(5px);
}

.dashboard-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

/* Home Content */
.home-content {
    text-align: center;
    margin: 40px 0;
}

.main-title {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #ff69b4;
    border-radius: 60px;
    background: rgba(255, 105, 180, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px #ff69b4;
    margin-bottom: 30px;
}

.main-title h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ffb6c1, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px #ff69b4;
}

.description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffccdd;
}

.features-badge {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.badge {
    background: rgba(255, 105, 180, 0.2);
    border: 1px solid #ff69b4;
    border-radius: 40px;
    padding: 10px 25px;
    font-weight: 600;
    color: #ffb6c1;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px #ff69b4;
}

.badge i {
    margin-right: 8px;
    color: #ff1493;
}

.advantages {
    background: rgba(30, 0, 20, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 105, 180, 0.5);
    border-radius: 40px;
    padding: 40px;
    margin: 50px auto;
    text-align: left;
    max-width: 700px;
}

.advantages h3 {
    font-size: 2rem;
    color: #ffb6c1;
    margin-bottom: 30px;
    text-align: center;
}

.advantages ul {
    list-style: none;
}

.advantages li {
    margin: 20px 0;
    padding-left: 50px;
    position: relative;
    font-size: 1.1rem;
}

.advantages li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff69b4;
    font-size: 1.8rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 105, 180, 0.3);
    margin-top: 40px;
    color: #ff99cc;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 700px) {
    header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .logo-area {
        justify-content: center;
    }
    .nav-links {
        justify-content: center;
    }
    .main-title h2 {
        font-size: 1.8rem;
    }
}