* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    background: linear-gradient(135deg, #1a1a2e 0, #16213e 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0, transparent 50%), radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0, transparent 50%);
    z-index: -1;
    animation: bgAnimation 20s ease infinite
}

@keyframes bgAnimation {
    0%, 100% {
        transform: rotate(0deg) scale(1)
    }
    50% {
        transform: rotate(180deg) scale(1.1)
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown .8s ease
}

.logo {
    position: relative;
    padding: 20px
}

.logo h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(45deg, #00f2fe, #4facfe, #00f2fe);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    text-transform: uppercase;
    letter-spacing: 2px
}

@keyframes gradientShift {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease infinite
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: .5
    }
}

.main-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease
}

.info-block {
    background: rgba(79, 172, 254, 0.08);
    border-radius: 15px;
    padding: 35px 30px 30px 30px;
    margin: 35px 0;
    position: relative;
    box-shadow: 0 4px 24px rgba(79, 172, 254, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeIn 1.2s
}

.info-block .icon {
    font-size: 38px;
    color: #4facfe;
    margin-bottom: 18px;
    display: inline-block;
    animation: bounce 2.5s infinite
}

.info-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #4facfe;
    margin-bottom: 15px
}

.info-block p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.7
}

.info-block .highlight {
    color: #00f2fe;
    font-weight: 600
}

.mail-block {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.18);
    border-radius: 15px;
    padding: 30px 20px;
    margin: 35px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 24px rgba(255, 193, 7, 0.08);
    animation: fadeIn 1.3s
}

.mail-block .icon {
    font-size: 36px;
    color: #ffc107;
    margin-bottom: 12px;
    animation: bounce 2.5s infinite
}

.mail-block p {
    font-size: 17px;
    color: #ffe082;
    margin-bottom: 18px
}

.mail-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #222;
    font-weight: 600;
    font-size: 18px;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(255, 193, 7, 0.18);
    transition: all .25s;
    border: 0;
    outline: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.mail-btn i {
    margin-right: 10px;
    font-size: 22px
}

.mail-btn:hover {
    background: linear-gradient(45deg, #ff9800, #ffc107);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.25)
}

.storage-block {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.18);
    border-radius: 15px;
    padding: 30px 20px;
    margin: 35px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 242, 254, 0.08);
    animation: fadeIn 1.4s
}

.storage-block .icon {
    font-size: 36px;
    color: #00f2fe;
    margin-bottom: 12px;
    animation: bounce 2.5s infinite
}

.storage-block h3 {
    font-size: 22px;
    color: #00f2fe;
    margin-bottom: 10px
}

.storage-block ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    width: 100%
}

.storage-block li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
    max-width: 700px;
    text-align: center
}

.storage-block li i {
    font-size: 22px;
    color: #4facfe;
    margin-top: 0
}

.virustotal-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.virustotal-section h3 {
    font-size: 24px;
    color: #ff6b6b;
    margin-bottom: 20px
}

.virustotal-section img {
    width: 150px;
    margin: 20px 0;
    filter: brightness(0) invert(1);
    opacity: .8
}

.virustotal-link {
    display: inline-flex;
    align-items: center;
    color: #4facfe;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #4facfe;
    border-radius: 30px;
    transition: all .3s ease
}

.virustotal-link:hover {
    background: #4facfe;
    color: #fff;
    transform: scale(1.05)
}

.virustotal-link i {
    margin-left: 10px
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-5px)
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 36px
    }

    .info-block h2 {
        font-size: 22px
    }

    .info-block p {
        font-size: 16px
    }

    .mail-btn {
        font-size: 16px;
        padding: 12px 20px
    }

    .storage-block h3 {
        font-size: 18px
    }

    .storage-block li {
        font-size: 15px
    }
}

@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 800;
}