.startgame-main {
    padding: 70px;
    min-height: calc(100vh - 170px);
}

.startgame-hero {
    position: relative;
    overflow: hidden;

    padding: 55px;
    border-radius: 32px;

    background:
        linear-gradient(
            90deg,
            rgba(3,10,25,.92) 0%,
            rgba(3,10,25,.75) 45%,
            rgba(3,10,25,.45) 100%
        ),
        url('/assets/img/hero-pc.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 1px solid rgba(96, 165, 250, 0.15);
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.42);
	animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

.startgame-hero::before {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    right: -100px;
    top: -100px;

    background: rgba(37, 99, 235, 0.18);
    border-radius: 50%;
    filter: blur(90px);
}

.startgame-label {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-bottom: 18px;
    padding: 9px 15px;

    border-radius: 999px;

    color: #7dd3fc;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(125, 211, 252, 0.18);

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.startgame-hero h1 {
    position: relative;
    z-index: 2;

    font-size: 54px;
    margin-bottom: 18px;

    background: linear-gradient(135deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.startgame-hero p {
    position: relative;
    z-index: 2;

    max-width: 720px;

    color: #dbeafe;
    font-size: 20px;
    line-height: 1.6;
}

.download-grid {
    margin-top: 35px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download-card {
    position: relative;
    overflow: hidden;

    min-height: 330px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 30px;
    border-radius: 26px;

    text-decoration: none;
    color: white;

    background:
        radial-gradient(circle at 85% 0%, rgba(56,189,248,.16), transparent 36%),
        rgba(11, 33, 61, 0.78);

    border: 1px solid rgba(96, 165, 250, 0.15);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);

    transition: 0.28s;
}

.download-card::before {
    content: "";
    position: absolute;

    width: 240px;
    height: 240px;

    right: -90px;
    top: -90px;

    background: rgba(37, 99, 235, 0.14);
    border-radius: 50%;
    filter: blur(70px);
}

.download-card:hover {
    transform: translateY(-7px);
    border-color: rgba(96, 165, 250, 0.42);
    box-shadow: 0 22px 60px rgba(37, 99, 235, 0.2);
}

.download-icon {
    position: relative;
    z-index: 2;

    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.14);
}

.download-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.download-content {
    position: relative;
    z-index: 2;
    margin-top: 28px;
}

.download-content span {
    display: inline-block;
    margin-bottom: 10px;

    color: #7dd3fc;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-content h2 {
    font-size: 25px;
    margin-bottom: 12px;
}

.download-content p {
    color: #bfdbfe;
    line-height: 1.55;
}

.download-card button {
    position: relative;
    z-index: 2;

    margin-top: 26px;

    width: 100%;
    padding: 16px;

    border: none;
    border-radius: 16px;

    background: linear-gradient(135deg, #2563eb, #38bdf8);

    color: white;
    font-size: 16px;
    font-weight: 900;

    cursor: pointer;
    transition: 0.25s;

    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.28);
}

.download-card:hover button {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.42);
}

.gta-card {
    background:
        radial-gradient(circle at 85% 0%, rgba(34,197,94,.13), transparent 36%),
        rgba(11, 33, 61, 0.78);
}

@media (max-width: 980px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .startgame-main {
        padding: 35px 18px;
    }

    .startgame-hero {
        background:
            linear-gradient(
                180deg,
                rgba(3,10,25,.92) 0%,
                rgba(3,10,25,.75) 55%,
                rgba(3,10,25,.55) 100%
            ),
            url('/assets/img/hero-mobile.png');

        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;

        padding: 34px 24px;
        border-radius: 25px;
    }

    .startgame-hero h1 {
        font-size: 38px;
    }

    .startgame-hero p {
        font-size: 17px;
    }

    .download-card {
        min-height: auto;
        padding: 26px;
    }
}