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

html {
    zoom: 90%;
}

body {
    font-family: "Russo One", sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background:
        linear-gradient(
            135deg,
            rgba(91, 181, 224, 0.4) 0%,
            rgba(23, 22, 22, 0.8) 100%
        ),
        url("https://i.imgur.com/HDQEjyW.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Favela effects background */
.favela-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.favela-wave {
    position: absolute;
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #5bb5e0 0%, #171616 50%, #5bb5e0 100%);
    animation: wave 6s infinite;
    border-radius: 50px;
    filter: blur(3px);
    box-shadow: 0 0 30px rgba(91, 181, 224, 0.4);
}

.favela-wave:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
    transform: scale(0.8);
}

.favela-wave:nth-child(2) {
    top: 50%;
    animation-delay: 2s;
    transform: scale(1.1);
}

.favela-wave:nth-child(3) {
    top: 80%;
    animation-delay: 4s;
    transform: scale(0.9);
}

@keyframes wave {
    0%,
    100% {
        transform: translateX(-100px) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(100px) scaleY(1.5);
        opacity: 0.6;
    }
}

/* Favela glow effects */
.favela-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(91, 181, 224, 0.4) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 4s infinite;
}

.favela-glow:nth-child(4) {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.favela-glow:nth-child(5) {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
    background: radial-gradient(
        circle,
        rgba(23, 22, 22, 0.6) 0%,
        transparent 70%
    );
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Main container */
.container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left side content */
.left-content {
    flex: 1;
    max-width: 600px;
    z-index: 3;
}

.logo {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.logo img {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(91, 181, 224, 0.6));
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        rgba(91, 181, 224, 0.3),
        rgba(23, 22, 22, 0.4)
    );
    border: 2px solid #5bb5e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #5bb5e0;
    margin-bottom: 18px;
    margin-right: 10px;
    animation: fadeInDown 1s ease-out 0.2s backwards;
    box-shadow:
        0 0 20px rgba(91, 181, 224, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(91, 181, 224, 0.3),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.badge span {
    position: relative;
    z-index: 1;
}

.headline {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    animation: fadeInDown 1s ease-out 0.4s backwards;
    text-shadow:
        3px 3px 15px rgba(91, 181, 224, 0.8),
        0 0 40px rgba(91, 181, 224, 0.4),
        2px 2px 8px rgba(0, 0, 0, 0.7);
}

.headline .highlight {
    color: #5bb5e0;
    position: relative;
    display: inline-block;
}

.headline .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #5bb5e0, transparent);
    animation: underlineGlow 2s infinite;
}

@keyframes underlineGlow {
    0%,
    100% {
        box-shadow: 0 0 15px #5bb5e0;
    }
    50% {
        box-shadow:
            0 0 25px #5bb5e0,
            0 0 40px #5bb5e0;
    }
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #d0d0d0;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.6),
        0 0 10px rgba(23, 22, 22, 0.4);
}

.description strong {
    color: #5bb5e0;
    font-weight: bold;
}

.buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn {
    padding: 12px 26px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: "Russo One", sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #5bb5e0, #4a9bc7);
    color: #ffffff;
    box-shadow:
        0 6px 30px rgba(91, 181, 224, 0.6),
        0 0 25px rgba(91, 181, 224, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 40px rgba(91, 181, 224, 0.8),
        0 0 35px rgba(91, 181, 224, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(23, 22, 22, 0.9);
    color: #ffffff;
    border: 2px solid rgba(91, 181, 224, 0.5);
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(91, 181, 224, 0.2);
}

.btn-secondary:hover {
    background: rgba(91, 181, 224, 0.2);
    border-color: #5bb5e0;
    transform: translateY(-4px);
    box-shadow:
        0 10px 35px rgba(91, 181, 224, 0.5),
        0 0 25px rgba(91, 181, 224, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.5);
}

.btn-discord {
    background: linear-gradient(135deg, #171616, #2a2a2a);
    color: #ffffff;
    border: 2px solid rgba(91, 181, 224, 0.3);
    box-shadow:
        0 6px 25px rgba(23, 22, 22, 0.7),
        0 0 15px rgba(91, 181, 224, 0.2);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #2a2a2a, #171616);
    border-color: #5bb5e0;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow:
        0 10px 35px rgba(23, 22, 22, 0.9),
        0 0 25px rgba(91, 181, 224, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.6);
}

.btn span {
    position: relative;
    z-index: 1;
}

/* High command section */
.section {
    position: relative;
    z-index: 2;
    padding: 40px 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.section-accent-line {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #5bb5e0, #171616);
    box-shadow:
        0 0 15px rgba(91, 181, 224, 0.7),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 26px;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-shadow:
        0 0 15px rgba(0, 0, 0, 0.8),
        2px 2px 8px rgba(91, 181, 224, 0.3);
}

.command-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.command-card {
    flex: 1 1 260px;
    max-width: 320px;
    background: radial-gradient(
        circle at top,
        rgba(91, 181, 224, 0.08),
        rgba(23, 22, 22, 0.96)
    );
    border-radius: 18px;
    padding: 28px 24px 30px;
    border: 1px solid rgba(91, 181, 224, 0.1);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(91, 181, 224, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.command-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 1),
        0 0 30px rgba(91, 181, 224, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(91, 181, 224, 0.4);
}

.command-avatar {
    width: 120px;
    height: 130px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(
        150deg,
        rgba(91, 181, 224, 0.15),
        rgba(23, 22, 22, 0.8)
    );
    border: 1px solid rgba(91, 181, 224, 0.1);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(91, 181, 224, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: top center;
}

.avatar-member1 {
    background-image: url("https://i.imgur.com/Givjcwn.png");
}

.avatar-member2 {
    background-image: url("https://i.imgur.com/b8uR7aO.png");
}

.avatar-member3 {
    background-image: url("https://i.imgur.com/CMlvGSF.png");
}

.command-name {
    font-size: 18px;
    color: #5bb5e0;
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(91, 181, 224, 0.4);
}

.command-tagline {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    max-width: 240px;
    word-wrap: break-word;
}

.command-role {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(180, 180, 190, 0.9);
    max-width: 240px;
    word-wrap: break-word;
    text-align: center;
    padding: 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* Download zone section */
.download-section {
    position: relative;
    z-index: 2;
    padding: 40px 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.download-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 60%;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(91, 181, 224, 0.8),
        rgba(23, 22, 22, 0.8),
        transparent
    );
    box-shadow: 0 0 30px rgba(91, 181, 224, 0.8);
    opacity: 0.8;
}

.download-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.download-label {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.download-title {
    font-size: 26px;
    color: #ffffff;
    text-shadow:
        0 0 15px rgba(0, 0, 0, 0.8),
        2px 2px 8px rgba(91, 181, 224, 0.3);
}

.download-title span {
    color: #5bb5e0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.download-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(
        circle at top,
        rgba(91, 181, 224, 0.12),
        rgba(23, 22, 22, 0.96)
    );
    border: 1px solid rgba(91, 181, 224, 0.1);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(91, 181, 224, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-origin: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.download-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(91, 181, 224, 0.25),
        transparent 60%
    );
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 1),
        0 0 40px rgba(91, 181, 224, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(91, 181, 224, 0.4);
    background: radial-gradient(
        circle at top,
        rgba(91, 181, 224, 0.18),
        rgba(23, 22, 22, 1)
    );
}

.download-card:hover::before {
    opacity: 1;
}

.download-card-header {
    padding: 20px 22px 14px;
    border-bottom: 1px solid rgba(91, 181, 224, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.download-version-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.7);
}

.download-version-name {
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(91, 181, 224, 0.3);
}

.download-version-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.download-card-body {
    padding: 16px 22px 18px;
    font-size: 13px;
    color: rgba(220, 220, 230, 0.9);
}

.download-features {
    margin: 10px 0 16px;
    list-style: none;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(220, 220, 230, 0.9);
    margin-bottom: 6px;
}

.download-features li::before {
    content: "✔";
    font-size: 11px;
    color: #5bb5e0;
}

.download-card-footer {
    padding: 0 22px 20px;
}

.download-button {
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(91, 181, 224, 0.2);
    background: linear-gradient(
        135deg,
        rgba(91, 181, 224, 0.1),
        rgba(23, 22, 22, 0.8)
    );
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(91, 181, 224, 0.1);
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    text-decoration: none;
}

.download-button span.icon {
    font-size: 12px;
}

.download-button:hover {
    background: linear-gradient(135deg, #5bb5e0, #4a9bc7);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 12px 35px rgba(91, 181, 224, 0.8),
        0 0 25px rgba(91, 181, 224, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.download-button:active {
    transform: translateY(-1px);
    box-shadow:
        0 6px 20px rgba(91, 181, 224, 0.7),
        0 0 15px rgba(91, 181, 224, 0.3);
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 2;
    padding: 20px 40px 30px;
    font-size: 13px;
    background: rgba(23, 22, 22, 0.9);
    border-top: 1px solid rgba(91, 181, 224, 0.3);
    color: #ffffff;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow:
        0 -5px 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(91, 181, 224, 0.1);
}

.site-footer span {
    color: #5bb5e0;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(91, 181, 224, 0.4);
}

/* Right side illustration placeholder */
.right-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.illustration {
    position: relative;
    animation: fadeInRight 1s ease-out 1s backwards;
}

.illustration::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(
        circle,
        rgba(91, 181, 224, 0.4) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse 3s infinite;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .left-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .headline {
        font-size: 42px;
    }

    .buttons {
        justify-content: center;
    }

    .section {
        padding: 30px 30px 60px;
    }

    .command-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 32px;
    }

    .description {
        font-size: 16px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .section {
        padding: 24px 20px 50px;
    }

    .section-title {
        font-size: 22px;
    }

    .command-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Additional Favela effects */
.favela-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #5bb5e0;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 15s infinite;
    box-shadow: 0 0 10px rgba(91, 181, 224, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}
