* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #000000;
    font-family: 'Segoe UI', 'Consolas', 'Arial', system-ui, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}
#snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #4a8eff;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(74, 142, 255, 0.1);
    padding-bottom: 0.8rem;
    text-shadow: 0 0 40px rgba(74, 142, 255, 0.1);
}
.hero {
    text-align: center;
    padding: 4rem 1rem 3rem;
    animation: fadeUp 0.8s ease;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.logo {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 6px;
}
h1 span {
    color: #4a8eff;
}
.tagline {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 6px;
    margin-top: 0.3rem;
}
.desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    max-width: 600px;
    margin: 1.2rem auto 2rem;
    line-height: 1.7;
}
.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2.5rem;
}
.stats div {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}
.stats span {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}
.btn-main {
    display: inline-block;
    background: #4a8eff;
    padding: 1rem 3.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #000000;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-main:hover {
    background: #6aa8ff;
    transform: scale(1.04);
    box-shadow: 0 0 60px rgba(74, 142, 255, 0.2);
}
.version {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.1);
    letter-spacing: 2px;
}
.features {
    padding: 3rem 0;
}
.feature-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
}
.feature-block:hover {
    border-color: rgba(74, 142, 255, 0.15);
}
.feature-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a8eff;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(74, 142, 255, 0.1);
    padding-bottom: 0.5rem;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.6rem;
}
.fitem {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    padding: 0.3rem 0.5rem;
    border-left: 2px solid rgba(74, 142, 255, 0.2);
    padding-left: 0.8rem;
    font-family: 'Consolas', monospace;
}
.fitem span {
    color: #4a8eff;
    margin-right: 4px;
}
.preview {
    padding: 3rem 0;
}
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
.shot {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.shot:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    transform: scale(1.03);
}
.shot span {
    font-size: 3rem;
    margin-bottom: 0.3rem;
}
.shot p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
}
.download {
    padding: 3rem 0;
}
.download-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}
.download-box:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(74, 142, 255, 0.15);
}
.dl-icon {
    font-size: 2.5rem;
}
.dl-info {
    flex: 1;
}
.dl-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
}
.dl-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}
.btn-dl {
    background: #4a8eff;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #000000;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-dl:hover {
    background: #6aa8ff;
    transform: scale(1.04);
}
.dl-note {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: rgba(255,200,0,0.15);
    letter-spacing: 1px;
}
.faq {
    padding: 3rem 0;
}
.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: rgba(74, 142, 255, 0.1);
}
.faq-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
}
.faq-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}
.social {
    padding: 3rem 0;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.soc {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.soc:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.soc span:first-child {
    font-size: 2.2rem;
}
.soc span:nth-child(2) {
    font-weight: 600;
    margin: 0.3rem 0 0.1rem;
}
.handle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
}
.telegram:hover { border-color: rgba(0, 136, 204, 0.3); }
.discord:hover { border-color: rgba(88, 101, 242, 0.3); }
.email {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.1);
    font-size: 0.9rem;
}
footer {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 2rem 0;
    text-align: center;
}
footer p {
    color: rgba(255,255,255,0.08);
    font-size: 0.8rem;
    letter-spacing: 2px;
}
footer .legal {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.03);
    margin-top: 0.3rem;
}
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    .stats { gap: 2rem; }
    .stats span { font-size: 1.6rem; }
    .download-box { flex-wrap: wrap; justify-content: center; text-align: center; }
    .btn-dl { width: 100%; text-align: center; }
    .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .tagline { font-size: 0.9rem; letter-spacing: 3px; }
    .preview-grid { grid-template-columns: 1fr 1fr; }
    .social-grid { grid-template-columns: 1fr 1fr; }
    .feature-block { padding: 1rem; }
}