* {
    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;
}

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 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 img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(255, 0, 0, .18);
}

section {
    width: 90%;
    max-width: 1300px;
    margin: 90px auto;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 42px;
}

.section-title p {
    color: #aaa;
    margin-top: 8px;
}

.cards {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

}

.card {

    display: block;

    background: #1a1a1a;

    border-radius: 18px;

    overflow: hidden;

    color: white;

    text-decoration: none;

    border: 1px solid #292929;

    transition: .3s;

}

.card:hover {

    transform: translateY(-8px);

    border-color: #ff3030;

    box-shadow: 0 15px 35px rgba(255, 0, 0, .18);

}

.card img {

    width: 100%;

    height: 210px;

    object-fit: cover;

}

.content {

    padding: 24px;

}

.content h3 {

    margin-bottom: 12px;

    font-size: 24px;

}

.content p {

    color: #b9b9b9;

    margin-bottom: 20px;

}

.read {

    color: #ff3030;

    font-weight: bold;

}

.news-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 25px;

}

.news-card {

    background: #1b1b1b;

    padding: 28px;

    border-radius: 15px;

    border: 1px solid #2d2d2d;

}

.news-card h3 {

    margin-bottom: 15px;

}

.news-card p {

    color: #bdbdbd;

}

.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;

}

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;

}

#topButton:hover {

    transform: scale(1.1);

}

@media(max-width:900px) {

    .hero {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .hero-buttons {

        justify-content: center;

    }

    .about-content {

        grid-template-columns: 1fr;

    }

    .stats {

        grid-template-columns: repeat(2, 1fr);

    }

    nav {

        display: none;

    }

}

@media(max-width:600px) {

    .hero h1 {

        font-size: 42px;

    }

    .section-title h2 {

        font-size: 32px;

    }

    .stats {

        grid-template-columns: 1fr;

    }

    .discord-box {

        padding: 40px 25px;

    }

}

.latest-news {

    padding: 90px 8%;

}

.news-card {

    display: flex;

    align-items: center;

    gap: 40px;

    background: #181818;

    border: 1px solid #2a2a2a;

    border-radius: 20px;

    overflow: hidden;

    text-decoration: none;

    transition: .3s;

}

.news-card:hover {

    transform: translateY(-6px);

    border-color: #ff3d3d;

}

.news-card img {
    width: 420px;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: contain;
    background: #111;
}

.news-content {

    padding: 35px;

    color: #fff;

}

.news-date {

    color: #ff3d3d;

    font-weight: 700;

    font-size: 14px;

}

.news-content h3 {

    margin: 15px 0;

    font-size: 32px;

}

.news-content p {

    color: #bbb;

    line-height: 1.7;

    margin-bottom: 25px;

}

@media(max-width:900px) {

    .news-card {

        flex-direction: column;

    }

    .news-card img {

        width: 100%;

        height: 220px;

    }

}

.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: 90%;

    max-width: 750px;

    background: #181818;

    border-radius: 18px;

    padding: 25px;

    border: 1px solid #303030;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);

    position: relative;

    animation: modalShow .3s ease;

}





@keyframes modalShow {

    from {

        opacity: 0;

        transform: translateY(30px) scale(.95);

    }


    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}

#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;

}





.modal-box img {

    width: 220px;

    height: 140px;

    object-fit: contain;

    display: block;

    flex-shrink: 0;

}





.modal-info {

    flex: 1;

}



.modal-info h2 {

    font-size: 28px;

    margin-bottom: 10px;

    color: white;

}





.news-date {

    color: #ff3030;

    font-weight: 700;

    font-size: 14px;

}

.modal-content {

    padding-top: 25px;

}

.modal-content p {

    color: #bdbdbd;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 25px;

}

.modal-buttons {

    display: flex;

    gap: 15px;

}



.modal-buttons .btn {

    padding: 14px 30px;

    border-radius: 10px;

    font-weight: 700;

    cursor: pointer;

    text-decoration: none;

    border: none;

}





#copyLink {

    background: #ff3030;

    color: white;

}



#copyLink:hover,

.modal-buttons .red:hover {

    background: #ff5050;

}

@media(max-width:700px) {


    .modal-box {

        padding: 20px;

    }



    .modal-top {

        flex-direction: column;

        text-align: center;

    }



    .modal-box img {

        width: 100%;

        height: 200px;

    }



    .modal-info h2 {

        font-size: 24px;

    }



    .modal-buttons {

        display: flex;

        gap: 15px;

        margin-top: 50px;

    }



    .modal-buttons .btn {

        width: 100%;

        text-align: center;

    }


}

.search-box {

    margin-bottom: 40px;

}


.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: 25px;

}



.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;

}

.support-section {
    width: 90%;
    max-width: 1300px;
    margin: 100px auto;
}

.support-box {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 60px;
    align-items: center;

    background: linear-gradient(145deg, #1b1b1b, #141414);

    border: 1px solid #2d2d2d;
    border-radius: 22px;
    padding: 60px;

    overflow: hidden;
}

.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;
}

@media (max-width:900px) {

    .support-box {

        grid-template-columns: 1fr;

        text-align: center;

        padding: 40px;

    }

    .support-content p {

        margin-left: auto;

        margin-right: auto;

    }

    .support-image {

        order: -1;

    }

}

.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);
}

#downloadButtons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}