* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #171717;
    border-bottom: 1px solid #252525;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.logo h1 {
    font-size: 34px;
    font-weight: 800;
}

.logo span {
    color: #ff3030;
}

.logo p {
    color: #999;
    font-size: 14px;
}

nav {
    display: flex;
    gap: 35px;
}

nav img {
    width: 45px;
    height: 45px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: .3s;
    font-weight: 500;
}

nav a:hover {
    color: #ff3030;
}

.hero {
    width: 90%;
    max-width: 1300px;
    margin: 90px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    color: #bcbcbc;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

.btn {
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s;
}

.red {
    background: #ff3030;
    color: white;
}

.red:hover {
    background: #ff4d4d;
}

.dark {
    border: 2px solid #ff3030;
    color: white;
}

.dark:hover {
    background: #ff3030;
}

.hero-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 48, 48, .10),
            transparent 65%
        ),
        linear-gradient(
            145deg,
            #181818,
            #101010
        );
    border: 1px solid #252525;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .45),
        inset 0 1px rgba(255, 255, 255, .03);
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: rgba(255, 48, 48, .18);
    filter: blur(65px);
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 82%;
    height: 82%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 48, 48, .35);
    box-shadow:
        0 0 35px rgba(255, 48, 48, .18),
        0 20px 50px rgba(0, 0, 0, .55);
    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        border-color .5s ease,
        box-shadow .5s ease;
}

.hero-image:hover img {
    transform: scale(1.035);
    border-color: rgba(255, 48, 48, .75);
    box-shadow:
        0 0 55px rgba(255, 48, 48, .28),
        0 25px 60px rgba(0, 0, 0, .6);
}

section {
    width: 90%;
    max-width: 1300px;
    margin: 90px auto;
}

.section-title {
    margin-bottom: 25px;
}

.section-title h2 {
    font-size: 38px;
}

.section-title p {
    color: #aaa;
    margin-top: 5px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.card {
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #ff3030;
    box-shadow: 0 18px 40px rgba(255, 48, 48, .18);
}

.card img {
    width: 400px;
    height: 400px;
    max-width: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    background: #111;
    border-bottom: 1px solid #2b2b2b;
}

.content {
    padding: 24px;
}

.content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.content p {
    color: #b9b9b9;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read {
    display: inline-block;
    margin-top: 20px;
    color: #ff3030;
    font-weight: 700;
    transition: .25s;
}

.card:hover .read {
    transform: translateX(5px);
}

.latest-news {
    width: 90%;
    max-width: 1300px;
    margin: 35px auto 45px;
    padding: 0;
}

.news-card {
    display: grid;
    grid-template-columns: 430px 1fr;
    background: linear-gradient(180deg, #1d1d1d, #171717);
    border: 1px solid #313131;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
    position: relative;
}

.news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(255, 48, 48, .08),
            transparent 40%
        );
    opacity: 0;
    transition: .35s;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: #ff3030;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45),
        0 0 35px rgba(255, 48, 48, .12);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .45s ease,
        filter .45s ease;
    background: #111;
}

.news-card:hover img {
    transform: scale(1.04);
    filter: brightness(1.05);
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
    position: relative;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 48, 48, .12);
    border: 1px solid rgba(255, 48, 48, .25);
    color: #ff4040;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 18px;
}

.news-content h3 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.news-content p {
    color: #bcbcbc;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.news-content .read {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 14px 24px;
    border-radius: 12px;
    background: #ff3030;
    color: #fff;
    font-weight: 700;
    transition: .3s;
}

.news-card:hover .read {
    transform: translateX(8px);
    background: #ff4a4a;
    box-shadow:
        0 10px 30px rgba(255, 48, 48, .35);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-text h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.about-text p {
    color: #bcbcbc;
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat {
    background: #1b1b1b;
    padding: 35px;
    text-align: center;
    border-radius: 15px;
}

.stat h2 {
    color: #ff3030;
    font-size: 46px;
}

.stat span {
    color: #bdbdbd;
}

.discord-box {
    background: #1a1a1a;
    padding: 60px;
    text-align: center;
    border-radius: 20px;
}

.discord-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.discord-box p {
    color: #bcbcbc;
    margin-bottom: 35px;
}

.discord-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 205px;
    padding: 14px 18px;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
    overflow: hidden;
}

.discord-button:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(255, 255, 255, 0.04);
}

.discord-button:active {
    transform: translateY(-1px) scale(.98);
}

.discord-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .08);
    border-radius: 11px;
    transition:
        background .25s ease,
        transform .25s ease;
}

.discord-icon img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.discord-button:hover .discord-icon {
    background: rgba(255, 255, 255, .13);
    transform: scale(1.08);
}

.discord-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.discord-text strong {
    font-size: 15px;
    font-weight: 700;
}

.discord-text small {
    margin-top: 4px;
    font-size: 11px;
    opacity: .55;
}

.discord-arrow {
    margin-left: auto;
    font-size: 21px;
    font-weight: 500;
    opacity: .6;
    transition:
        transform .25s ease,
        opacity .25s ease;
}

.discord-button:hover .discord-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.support-section {
    width: 90%;
    max-width: 1300px;
    margin: 100px auto;
}

.support-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: linear-gradient(145deg, #1b1b1b, #141414);
    border: 1px solid #2d2d2d;
    border-radius: 22px;
    padding: 60px;
    overflow: hidden;
}

.support-content {
    flex: 1;
}

.support-tag {
    display: inline-block;
    background: rgba(255, 48, 48, .12);
    color: #ff3030;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-content h2 {
    font-size: 42px;
    margin-bottom: 18px;
}

.support-content p {
    color: #bcbcbc;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 650px;
}

.support-gif {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-gif img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    object-fit: contain;
}

footer {
    background: #171717;
    margin-top: 80px;
}

.footer-grid {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-grid h3 {
    margin-bottom: 18px;
}

.footer-grid a {
    display: block;
    color: #bcbcbc;
    text-decoration: none;
    margin: 10px 0;
    transition: .3s;
}

.footer-grid a:hover {
    color: #ff3030;
}

.copyright {
    border-top: 1px solid #2a2a2a;
    padding: 20px;
    text-align: center;
    color: #777;
}

#topButton {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #ff3030;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: .3s;
    z-index: 1500;
}

#topButton:hover {
    transform: scale(1.1);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 20px;
}

.modal-box {
    width: min(90vw, 680px);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #202020, #171717);
    border: 1px solid #343434;
    border-radius: 18px;
    padding: 22px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .55),
        0 0 40px rgba(255, 48, 48, .08);
    position: relative;
    animation: modalShow .3s ease;
}

#closeModal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #ff3030;
    color: white;
    font-size: 25px;
    cursor: pointer;
    z-index: 5;
    transition: .3s;
}

#closeModal:hover {
    transform: scale(1.1);
}

.modal-top {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 24px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.modal-thumbnail {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 20px;
    background: linear-gradient(145deg, #262626, #1b1b1b);
    border: 1px solid rgba(255, 48, 48, .25);
    overflow: visible;
    transition:
        transform .45s cubic-bezier(.16, 1, .3, 1),
        border-color .45s cubic-bezier(.16, 1, .3, 1),
        box-shadow .45s cubic-bezier(.16, 1, .3, 1);
}

.modal-thumbnail::before {
    content: "";
    position: absolute;
    inset: -35px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 48, 48, .14) 0%,
        rgba(255, 48, 48, .06) 35%,
        transparent 75%
    );
    filter: blur(22px);
    opacity: .65;
    z-index: -1;
}

.modal-thumbnail:hover {
    transform: translateY(-3px);
    border-color: #ff4040;
    box-shadow:
        0 10px 30px rgba(255, 48, 48, .16);
}

.modal-box img {
    width: 145px;
    aspect-ratio: 1;
    object-fit: cover;
}

.modal-thumbnail img {
    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1),
        filter .45s cubic-bezier(.22, 1, .36, 1);
}

.modal-thumbnail:hover img {
    transform: scale(1.02);
}

.modal-info {
    flex: 1;
}

.modal-info h2 {
    font-size: 31px;
    line-height: 1.15;
}

#modalDescription {
    margin: 22px 0;
    padding-bottom: 22px;
    color: #c5c5c5;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.modal-content {
    padding-top: 18px;
}

.modal-content p {
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.modal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 6px;
}

.modal-buttons .btn {
    transition: .25s;
}

.modal-buttons .btn:hover {
    transform: translateY(-3px);
}

#downloadButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

#copyLink {
    background: #ff3030;
    color: white;
}

#copyLink:hover,
.modal-buttons .red:hover {
    background: #ff5050;
}

.search-box {
    margin-bottom: 25px;
}

.search-box input {
    width: 100%;
    max-width: 500px;
    padding: 16px 20px;
    background: #181818;
    border: 1px solid #303030;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: .3s;
}

.search-box input:focus {
    border-color: #ff3030;
    box-shadow: 0 0 15px rgba(255, 48, 48, .2);
}

.search-box input::placeholder {
    color: #777;
}

.categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.category {
    padding: 12px 25px;
    background: #181818;
    border: 1px solid #303030;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.category:hover,
.category.active {
    background: #ff3030;
    border-color: #ff3030;
}

.tutorial-btn {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #202020;
    border: 1px solid #353535;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: .25s ease;
}

.tutorial-btn:hover {
    background: #ff3030;
    border-color: #ff3030;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 48, 48, .35);
}

.tutorial-btn:active {
    transform: scale(.95);
}

.tutorial-help {
    font-size: 20px;
    font-weight: 800;
}

.tutorial-notice {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 48, 48, .08);
    border: 1px solid rgba(255, 48, 48, .25);
    border-radius: 12px;
    color: #ccc;
}

.tutorial-notice-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff3030;
    border-radius: 50%;
    color: white;
    font-size: 19px;
    font-weight: 800;
}

.tutorial-notice strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 2px;
}

.tutorial-notice p {
    color: #999;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.tutorial-notice b {
    color: #ff4040;
}

/* =========================================================
   GALERIA - SCREENSHOTS 1280x720
   ========================================================= */

.gallery {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 35px auto;
    overflow: hidden;
    border-radius: 22px;
    background: #111;
    border: 1px solid #343434;
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .03),
        0 18px 40px rgba(0, 0, 0, .45);
    transition:
        border-color .45s ease,
        box-shadow .45s ease;
}

.gallery:hover {
    border-color: #ff3030;
    box-shadow:
        0 18px 45px rgba(255, 48, 48, .15);
}

.gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 48, 48, .06),
            transparent 70%
        );
    opacity: 0;
    transition: .45s;
    pointer-events: none;
    z-index: 2;
}

.gallery:hover::before {
    opacity: 1;
}

.gallery::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(
        rgba(255, 255, 255, .05),
        transparent
    );
    pointer-events: none;
    z-index: 3;
}

#galleryImage {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
    background: #101010;
    transition:
        transform .55s cubic-bezier(.22, 1, .36, 1),
        filter .45s ease;
}

.gallery:hover #galleryImage {
    transform: scale(1.015);
    filter: brightness(1.03);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    cursor: pointer;
    transition:
        background .28s ease,
        transform .28s ease,
        box-shadow .28s ease;
    z-index: 30;
}

#prevShot {
    left: 12px;
}

#nextShot {
    right: 12px;
}

.gallery-arrow svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 2.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.gallery-arrow:hover {
    background: rgba(255, 48, 48, .85);
    transform: translateY(-50%) scale(1.08);
    box-shadow:
        0 8px 25px rgba(255, 48, 48, .35);
}

.gallery-arrow:active {
    transform: translateY(-50%) scale(.95);
}

.gallery-count {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
    user-select: none;
    z-index: 20;
}

.gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
    transition:
        width .28s ease,
        background .28s ease,
        transform .28s ease;
}

.gallery-dot.active {
    width: 26px;
    background: #ff3030;
}

.gallery-dot:hover {
    transform: scale(1.15);
}

#loadingScreen {
    position: fixed;
    inset: 0;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition:
        opacity .5s ease,
        visibility .5s ease;
}

#loadingScreen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-logo {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.loading-logo span {
    color: #ff3030;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #292929;
    border-top-color: #ff3030;
    border-radius: 50%;
    animation: loadingSpin .8s linear infinite;
    margin-bottom: 20px;
}

.loading-content p {
    color: #888;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes loadingSpin {
    to {
        transform: rotate(360deg);
    }
}

.social-section {
    width: 90%;
    max-width: 1300px;
    margin: 30px auto 25px;
}

.social-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
}

.social-banner {
    display: block;
    width: 100%;
    position: relative;
    border-radius: 14px;
    transition:
        transform .3s ease,
        filter .3s ease;
}

.social-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition:
        transform .3s ease,
        filter .3s ease;
}

.social-banner::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 18px;
    filter: blur(18px);
    opacity: .4;
    z-index: -1;
    transition: opacity .3s ease;
}

.social-banner.whatsapp::before {
    background: rgba(37, 211, 102, .35);
}

.social-banner.youtube::before {
    background: rgba(255, 0, 0, .35);
}

.social-banner.discord::before {
    background: rgba(88, 101, 242, .35);
}

.social-banner:hover {
    transform: translateY(-5px);
}

.social-banner:hover img {
    transform: scale(1.025);
    filter: brightness(1.08);
}

.social-banner:hover::before {
    opacity: .75;
}

.link-info {
    width: 90%;
    max-width: 1300px;
    margin: 30px auto 70px;
}

.link-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: #181818;
    border: 1px solid #2d2d2d;
    border-radius: 16px;
    transition: .3s ease;
}

.link-info-box:hover {
    border-color: #ff3030;
}

.link-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff3030;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.link-info-box h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.link-info-box p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
}

.link-info-box strong {
    color: #ff4040;
}

#addons {
    width: 90%;
    max-width: 1300px;
    margin: 45px auto;
}

.addon-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.addon-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addon-slide {
    position: absolute;
    width: 400px;
    height: 560px;
    background: #1a1a1a;
    border: 1px solid #303030;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        opacity .5s ease,
        filter .5s ease,
        box-shadow .5s ease;
}

.addon-slide img {
    display: block;
    width: 400px;
    height: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    background: #111;
}

.addon-slide-content {
    height: 160px;
    padding: 18px 22px;
    overflow: hidden;
}

.addon-slide-content h3 {
    font-size: 23px;
    line-height: 1.25;
    margin: 0 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.addon-slide-content p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.addon-slide.current {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: brightness(1);
    z-index: 10;
    border-color: #ff3030;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .55),
        0 0 40px rgba(255, 48, 48, .15);
}

.addon-slide.previous {
    transform: translateX(-360px) scale(.82);
    opacity: .55;
    filter: brightness(.45) saturate(.7);
    z-index: 5;
}

.addon-slide.next {
    transform: translateX(360px) scale(.82);
    opacity: .55;
    filter: brightness(.45) saturate(.7);
    z-index: 5;
}

.addon-slide.hidden-left {
    transform: translateX(-700px) scale(.65);
    opacity: 0;
    filter: brightness(.3);
    z-index: 1;
}

.addon-slide.hidden-right {
    transform: translateX(700px) scale(.65);
    opacity: 0;
    filter: brightness(.3);
    z-index: 1;
}

.addon-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #383838;
    border-radius: 50%;
    background: rgba(0, 0, 0, .65);
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 30;
    backdrop-filter: blur(10px);
    transition:
        background .25s ease,
        transform .25s ease,
        border-color .25s ease;
}

#addonPrev {
    left: 25px;
}

#addonNext {
    right: 25px;
}

.addon-arrow:hover {
    background: #ff3030;
    border-color: #ff3030;
    transform: translateY(-50%) scale(1.1);
}

.addon-arrow:active {
    transform: translateY(-50%) scale(.95);
}

.addon-position {
    text-align: center;
    margin-top: 15px;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}

.addon-empty {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 60px 30px;
    background: #1a1a1a;
    border: 1px solid #303030;
    border-radius: 20px;
    margin: auto;
}

.addon-empty-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.addon-empty h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.addon-empty p {
    color: #888;
    font-size: 14px;
}

.explore-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    min-width: 245px;
    color: white;
    text-decoration: none;
    background: linear-gradient(
        135deg,
        #ff3b3b,
        #ff1744
    );
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    box-shadow:
        0 8px 25px rgba(255, 40, 40, .35),
        inset 0 1px 0 rgba(255, 255, 255, .2);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
    overflow: hidden;
}

.explore-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, .25),
        transparent
    );
    transform: skewX(-20deg);
    animation: exploreShine 3s infinite;
}

@keyframes exploreShine {
    0% {
        left: -100%;
    }

    45%,
    100% {
        left: 150%;
    }
}

.explore-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 14px 35px rgba(255, 40, 40, .5),
        inset 0 1px 0 rgba(255, 255, 255, .25);
}

.explore-button:active {
    transform: translateY(-1px) scale(.98);
}

.explore-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    font-size: 20px;
    background: rgba(255, 255, 255, .15);
    border-radius: 11px;
    backdrop-filter: blur(5px);
}

.explore-text {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.explore-text strong {
    font-size: 15px;
    font-weight: 700;
}

.explore-text small {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 400;
    opacity: .75;
}

.explore-arrow {
    position: relative;
    margin-left: auto;
    font-size: 22px;
    font-weight: 600;
    transition: transform .25s ease;
}

.explore-button:hover .explore-arrow {
    transform: translateX(5px);
}

.recommended-section {
    width: 90%;
    max-width: 1300px;
    margin: 45px auto 35px;
    padding: 0;
}

.recommended-card {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    border-radius: 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s ease;
}

.recommended-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, .18);
}

.recommended-image {
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
    background: #111;
}

.recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.recommended-content {
    flex: 1;
}

.recommended-tag {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    opacity: .7;
}

.recommended-date {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
    opacity: .55;
}

.recommended-content h3 {
    margin: 0 0 10px;
    font-size: 28px;
}

.recommended-content p {
    margin: 0 0 20px;
    line-height: 1.6;
    opacity: .75;
}

.recommended-button {
    padding: 11px 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    background: #fff;
    color: #111;
    transition: .2s ease;
}

.recommended-button:hover {
    transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .addon-carousel {
        height: 590px;
    }

    .addon-slide {
        width: 400px;
        height: 560px;
    }

    .addon-slide img {
        width: 400px;
        height: 400px;
    }

    .addon-slide.previous {
        transform: translateX(-320px) scale(.78);
    }

    .addon-slide.next {
        transform: translateX(320px) scale(.78);
    }

    .addon-arrow {
        width: 52px;
        height: 52px;
    }

    #addonPrev {
        left: 10px;
    }

    #addonNext {
        right: 10px;
    }
}

/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .container {
        padding: 18px 0;
    }

    .logo h1 {
        font-size: 30px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 45px;
        margin: 65px auto;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        width: 85%;
        max-width: 600px;
        margin: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    nav {
        display: none;
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    /*
       IMPORTANTE:
       A imagem da notícia agora mantém a proporção original.
       Como ela normalmente é 400x400, não será deformada.
    */
    .news-card img {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: contain;
        object-position: center;
        background: #111;
        display: block;
    }

    .news-content {
        padding: 28px;
    }

    .news-content h3 {
        font-size: 28px;
    }

    .support-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .support-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .support-gif {
        width: 220px;
        order: -1;
    }

    .support-gif img {
        max-width: 220px;
    }

    .social-banners {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    body {
        line-height: 1.55;
    }

    .container {
        width: 92%;
        padding: 16px 0;
    }

    .logo h1 {
        font-size: 27px;
    }

    .logo p {
        font-size: 12px;
    }

    section,
    .latest-news,
    .social-section,
    .link-info,
    #addons,
    .recommended-section,
    .support-section {
        width: 92%;
    }

    .hero {
        width: 92%;
        margin: 50px auto 65px;
        gap: 35px;
    }

    .hero h1 {
        font-size: 43px;
        line-height: 1.08;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 14px 22px;
        border-radius: 10px;
        font-size: 14px;
    }

    .hero-image {
        width: 100%;
        max-width: 430px;
        border-radius: 24px;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .section-title p {
        font-size: 14px;
    }

    /* CARDS 400x400 */
    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        border-radius: 18px;
    }

    .card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
        object-position: center;
        background: #111;
    }

    .content {
        padding: 20px;
    }

    .content h3 {
        font-size: 21px;
        margin-bottom: 9px;
    }

    .content p {
        font-size: 14px;
    }

    /* ÚLTIMA NOTÍCIA */
    .latest-news {
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .news-card {
        border-radius: 18px;
    }

    .news-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
        object-position: center;
        background:
            radial-gradient(
                circle at center,
                rgba(255, 48, 48, .06),
                transparent 70%
            ),
            #111;
    }

    .news-content {
        padding: 22px;
    }

    .news-date {
        font-size: 11px;
        padding: 7px 11px;
        margin-bottom: 14px;
    }

    .news-content h3 {
        font-size: 25px;
        line-height: 1.25;
        margin-bottom: 13px;
    }

    .news-content p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .news-content .read {
        padding: 12px 18px;
        font-size: 14px;
    }

    /* ABOUT */
    .about-content {
        gap: 28px;
    }

    .about-image img {
        border-radius: 16px;
    }

    .about-text h3 {
        font-size: 27px;
    }

    .about-text p {
        font-size: 15px;
    }

    /* STATS */
    .stats {
        gap: 12px;
    }

    .stat {
        padding: 25px 15px;
        border-radius: 14px;
    }

    .stat h2 {
        font-size: 36px;
    }

    .stat span {
        font-size: 13px;
    }

    /* DISCORD */
    .discord-box {
        padding: 38px 20px;
        border-radius: 18px;
    }

    .discord-box h2 {
        font-size: 29px;
    }

    .discord-box p {
        font-size: 14px;
    }

    .discord-button {
        width: 100%;
        max-width: 300px;
    }

    /* SUPPORT */
    .support-section {
        margin: 70px auto;
    }

    .support-box {
        padding: 32px 20px;
        border-radius: 18px;
        gap: 25px;
    }

    .support-content h2 {
        font-size: 30px;
    }

    .support-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .support-gif {
        width: 180px;
    }

    .support-gif img {
        max-width: 180px;
    }

    .support-content .hero-buttons {
        justify-content: center;
    }

    /* SOCIAL */
    .social-section {
        margin-top: 30px;
    }

    .social-banners {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .social-banner {
        max-width: 500px;
        margin: auto;
    }

    /* LINK INFO */
    .link-info {
        margin-bottom: 50px;
    }

    .link-info-box {
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 14px;
    }

    .link-info-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .link-info-box h3 {
        font-size: 17px;
    }

    .link-info-box p {
        font-size: 13px;
    }

    /* ADDON CAROUSEL */
    .addon-carousel {
        height: 470px;
    }

    .addon-slide {
        width: 280px;
        height: 410px;
        border-radius: 18px;
    }

    .addon-slide img {
        width: 280px;
        height: 280px;
    }

    .addon-slide-content {
        height: 130px;
        padding: 16px 18px;
    }

    .addon-slide-content h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .addon-slide-content p {
        font-size: 13px;
        line-height: 1.45;
        -webkit-line-clamp: 3;
    }

    .addon-slide.previous,
    .addon-slide.next {
        opacity: 0;
        pointer-events: none;
    }

    .addon-arrow {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    #addonPrev {
        left: 8px;
    }

    #addonNext {
        right: 8px;
    }

    /* RECOMMENDED */
    .recommended-section {
        margin-top: 35px;
    }

    .recommended-card {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 18px;
        border-radius: 18px;
    }

    /*
       A imagem 400x400 aparece inteira.
       Não usamos cover porque isso pode cortar a arte.
    */
    .recommended-image {
        flex: none;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        background:
            radial-gradient(
                circle at center,
                rgba(255, 48, 48, .06),
                transparent 70%
            ),
            #111;
        border-radius: 14px;
    }

    .recommended-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .recommended-content h3 {
        font-size: 22px;
    }

    .recommended-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .recommended-button {
        width: 100%;
        padding: 12px 18px;
    }

    /* GALERIA 1280x720 */
    .gallery {
        width: 100%;
        max-width: 100%;
        margin: 25px auto;
        border-radius: 17px;
        background: #0d0d0d;
    }

    /*
       1280x720 = 16:9.
       Mantemos exatamente essa proporção e mostramos
       a imagem inteira.
    */
    #galleryImage {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: contain;
        object-position: center;
        background: #0d0d0d;
    }

    .gallery-arrow {
        width: 44px;
        height: 44px;
    }

    .gallery-arrow svg {
        width: 22px;
        height: 22px;
    }

    #prevShot {
        left: 8px;
    }

    #nextShot {
        right: 8px;
    }

    .gallery-count {
        top: 10px;
        right: 10px;
        padding: 5px 9px;
        font-size: 11px;
    }

    .gallery-dots {
        bottom: 11px;
        gap: 6px;
    }

    .gallery-dot {
        width: 7px;
        height: 7px;
    }

    .gallery-dot.active {
        width: 20px;
    }

    /* TUTORIAL */
    .tutorial-notice {
        align-items: flex-start;
        padding: 13px;
        gap: 11px;
    }

    .tutorial-notice-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .tutorial-notice strong {
        font-size: 13px;
    }

    .tutorial-notice p {
        font-size: 12px;
    }

    /* MODAL */
    .modal {
        padding: 12px;
        align-items: center;
    }

    .modal-box {
        width: 100%;
        max-width: 520px;
        max-height: 94vh;
        padding: 17px;
        border-radius: 17px;
    }

    #closeModal {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .modal-top {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding-bottom: 20px;
        margin-bottom: 18px;
    }

    .modal-thumbnail {
        width: 150px;
        height: 150px;
        padding: 7px;
    }

    .modal-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .modal-info h2 {
        font-size: 23px;
        padding: 0 35px;
    }

    #modalDescription {
        margin: 18px 0;
        padding-bottom: 18px;
        font-size: 14px;
    }

    .modal-content {
        padding-top: 12px;
    }

    .modal-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .modal-buttons {
        gap: 10px;
        margin-top: 25px;
    }

    .modal-buttons .btn {
        width: 100%;
        text-align: center;
    }

    #downloadButtons {
        width: 100%;
    }

    #downloadButtons .btn {
        width: 100%;
    }

    .tutorial-btn {
        width: 52px;
        height: 52px;
    }

    /* EXPLORE */
    .explore-button {
        width: 100%;
        min-width: 0;
    }

    /* TOP BUTTON */
    #topButton {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    /* LOADING */
    .loading-logo {
        font-size: 34px;
    }

    .loading-spinner {
        width: 42px;
        height: 42px;
    }

    .loading-content p {
        font-size: 12px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .discord-box {
        padding: 35px 18px;
    }

    /*
       Mantém imagens quadradas inteiras.
       Isso é especialmente importante para as artes 400x400.
    */
    .card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
        object-position: center;
        background: #111;
    }

    .loading-logo {
        font-size: 32px;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
    }

    .social-banners {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .social-banner {
        max-width: 500px;
        margin: auto;
    }

    .link-info-box {
        align-items: flex-start;
        padding: 18px;
    }

    .link-info-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .link-info-box h3 {
        font-size: 18px;
    }

    .addon-carousel {
        height: 470px;
    }

    .addon-slide {
        width: 280px;
        height: 410px;
    }

    .addon-slide img {
        width: 280px;
        height: 280px;
    }

    .addon-slide-content {
        height: 130px;
        padding: 16px 18px;
    }

    .addon-slide-content h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .addon-slide-content p {
        font-size: 13px;
        line-height: 1.45;
        -webkit-line-clamp: 3;
    }

    .addon-slide.previous,
    .addon-slide.next {
        opacity: 0;
        pointer-events: none;
    }

    .addon-arrow {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    #addonPrev {
        left: 8px;
    }

    #addonNext {
        right: 8px;
    }

    .recommended-card {
        padding: 16px;
    }

    .recommended-image {
        aspect-ratio: 1 / 1;
        width: 100%;
    }

    .recommended-image img {
        object-fit: contain;
    }

    /*
       Screenshots continuam 16:9 e inteiras.
    */
    .gallery {
        border-radius: 15px;
    }

    #galleryImage {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow svg {
        width: 20px;
        height: 20px;
    }

    .gallery-count {
        top: 8px;
        right: 8px;
        font-size: 10px;
    }

    .gallery-dots {
        bottom: 9px;
    }

    .gallery-dot {
        width: 6px;
        height: 6px;
    }

    .gallery-dot.active {
        width: 18px;
    }

    .support-content h2 {
        font-size: 27px;
    }

    .support-content p {
        font-size: 14px;
    }

    .support-gif {
        width: 160px;
    }

    .support-gif img {
        max-width: 160px;
    }

    .news-content h3 {
        font-size: 23px;
    }

    .news-content p {
        font-size: 14px;
    }

    .news-content .read {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons .btn {
        flex: 1;
        min-width: 130px;
        text-align: center;
    }
}

/* =========================================================
   EXTRA SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .logo h1 {
        font-size: 24px;
    }

    .logo p {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero {
        margin-top: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .card img {
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

    .news-card img {
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

    .recommended-image {
        aspect-ratio: 1 / 1;
    }

    .addon-slide {
        width: 260px;
        height: 390px;
    }

    .addon-slide img {
        width: 260px;
        height: 260px;
    }

    .addon-carousel {
        height: 450px;
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
    }

    .gallery-arrow svg {
        width: 18px;
        height: 18px;
    }
}