body {
    background: #000;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    overflow-x: hidden;
}

/* قالب بلند و یکپارچه */
.container {
    max-width: 420px;
    margin: auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* فاصله استاندارد بین بخش‌ها */
}

/* عنوان */
.title {
    font-size: 30px;
    color: #6fdcff;
    text-shadow: 0 0 12px #6fdcff;
}

/* آیکون‌ها */
.icon {
    width: 160px;
    filter: drop-shadow(0 0 14px #6fdcff);
}

/* متن زیر آیکون */
.text {
    font-size: 18px;
    color: #6fdcff;
    text-shadow: 0 0 10px #6fdcff;
    margin-top: -10px;
}

/* دکمه‌ها */
.btn {
    padding: 14px 32px;
    border-radius: 12px;
    border: 2px solid #6fdcff;
    background: transparent;
    color: #6fdcff;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s;
    text-shadow: 0 0 10px #6fdcff;
}
.btn:hover {
    background: rgba(111, 220, 255, 0.15);
    transform: scale(1.08);
    box-shadow: 0 0 18px #6fdcff;
}

/* فوتر */
.footer {
    color: #6fdcff;
    font-size: 14px;
    opacity: 0.8;
    text-shadow: 0 0 10px #6fdcff;
    margin-bottom: 40px;
}