* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}
:root {
    --primary: #00f0ff;
    --secondary: #a100f6;
    --accent: #ff00c8;
    --dark: #0a0a16;
    --darker: #050510;
    --light: #e0f8ff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}
body {
    background: linear-gradient(135deg, var(--darker), var(--dark));
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
}
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(10, 10, 22, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 22, 0.9) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite linear;
}
@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-100px) translateX(100px); }
    100% { transform: translateY(0) translateX(0); }
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}
.logo {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}
.tagline {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}
.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2);
}
.github-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.github-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    background: var(--glass);
    backdrop-filter: blur(10px);
}
.github-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
    color: var(--accent);
}
.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 50px 0;
}
.download-title {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}
.download-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.15);
    border-color: var(--primary);
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-title {
    font-size: 1.3rem;
    font-weight: 600;
}
.card-icon {
    font-size: 1.8rem;
    color: var(--primary);
}
.card-desc {
    color: #a0a0c0;
    font-size: 0.9rem;
    line-height: 1.5;
}
.btn {
    margin-top: auto;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--darker);
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.4);
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 60px 0;
}
.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(161, 0, 246, 0.15);
    border-color: var(--secondary);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.feature-desc {
    color: #a0a0c0;
    line-height: 1.6;
}
.gallery {
    margin: 80px 0;
}
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-item {
    min-width: 100%;
}
.carousel-item img {
    height: 100%;
    width: 100%;
    display: block;
}
.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dot.active {
    background: var(--primary);
}
.history-section {
    margin: 80px 0;
    text-align: center;
}
.star-history {
    overflow: hidden;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: -2px;
    backdrop-filter: blur(10px);
}
.acknowledgment {
    margin: 80px 0;
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}
.acknowledgment a {
    color: var(--primary);
    text-decoration: none;
}
footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid var(--glass-border);
    color: #a0a0c0;
    font-size: 0.9rem;
}
.telegram-channel {
    margin-top: 30px;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.telegram-channel a {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}
.telegram-channel a:hover {
    color: var(--accent);
}
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    .download-grid {
        grid-template-columns: 1fr;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .github-links {
        flex-direction: column;
        align-items: center;
    }
}
