@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');

body {
    margin: 0;
    background: radial-gradient(circle at 20% 20%, #0f1b3d, #05070f);
    color: #e6ecff;
    font-family: 'Orbitron', sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    background: radial-gradient(#1f6fff22 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveBg 40s linear infinite;
    z-index: -1;
}

@keyframes moveBg {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-200px, -200px);
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    backdrop-filter: blur(12px);
    background: rgba(10, 15, 30, 0.6);
    border-bottom: 1px solid #1f6fff33;
}

.logo {
    font-size: 1.5rem;
    color: #5aa2ff;
    text-shadow: 0 0 15px #1f6fff;
}

.menu a {
    margin-left: 30px;
    text-decoration: none;
    color: #bcd0ff;
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #5aa2ff;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-box {
    padding: 60px;
    border-radius: 20px;
    background: rgba(20, 30, 60, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid #1f6fff44;
    box-shadow: 0 0 60px #1f6fff22;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #5aa2ff, #8fd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #9fb4ff;
}

.btn-glow {
    margin-top: 30px;
    padding: 14px 40px;
    border-radius: 12px;
    border: 1px solid #1f6fff;
    background: transparent;
    color: #5aa2ff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, transparent, #1f6fff55, transparent);
    left: -100%;
    transition: 0.6s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    box-shadow: 0 0 20px #1f6fff88;
}

footer {
    padding: 60px;
    background: linear-gradient(to top, #05070f, #0f1b3d);
    border-top: 1px solid #1f6fff33;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer h3 {
    color: #5aa2ff;
}

.footer a {
    display: block;
    margin-top: 10px;
    color: #7f95d9;
    text-decoration: none;
}

.footer a:hover {
    color: #5aa2ff;
}

.copy {
    margin-top: 40px;
    text-align: center;
    color: #6c7bb5;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #5aa2ff;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(10, 15, 30, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        padding: 30px;
        transition: 0.4s;
        border-left: 1px solid #1f6fff33;
    }

    .menu.active {
        right: 0;
    }

    .menu a {
        margin: 15px 0;
        font-size: 1.1rem;
    }
}

.contact p {
    margin-top: 10px;
    color: #7f95d9;
    letter-spacing: 0.5px;
}

.contact p:hover {
    color: #5aa2ff;
}

.hero-advanced {
    padding: 60px 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, #5aa2ff, #8fd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    margin-top: 20px;
    color: #9fb4ff;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    border-radius: 12px;
    text-decoration: none;
    color: #5aa2ff;
    border: 1px solid #1f6fff;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, transparent, #1f6fff55, transparent);
    left: -100%;
    transition: 0.6s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    box-shadow: 0 0 20px #1f6fff88;
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image img {
    width: 450px;
    border-radius: 20px;
    box-shadow: 0 0 40px #1f6fff33;
    transform: rotate(2deg);
    transition: 0.4s;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.03);
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
    }
}

.stats-section {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    background: rgba(20, 30, 60, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid #1f6fff33;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #1f6fff44;
}

.stat-card i {
    font-size: 2rem;
    color: #5aa2ff;
    margin-bottom: 15px;
    display: inline-block;
}

.stat-card h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #5aa2ff, #8fd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    margin-top: 10px;
    color: #9fb4ff;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.about-image img {
    width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 40px #1f6fff33;
    transform: rotate(-2deg);
    transition: 0.4s;
}

.about-image img:hover {
    transform: rotate(0deg) scale(1.03);
}

.about-text {
    max-width: 550px;
}

.about-text h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #5aa2ff, #8fd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-top: 20px;
    color: #9fb4ff;
    line-height: 1.7;
}

.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 10px;
    border: 1px solid #1f6fff;
    color: #5aa2ff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.about-btn::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, transparent, #1f6fff55, transparent);
    left: -100%;
    transition: 0.6s;
}

.about-btn:hover::before {
    left: 100%;
}

.about-btn:hover {
    box-shadow: 0 0 20px #1f6fff88;
}

@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
    }
}

.servers-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #5aa2ff, #8fd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.server-card {
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    background: rgba(20, 30, 60, 0.35);
    backdrop-filter: blur(20px);
    border: 1px solid #1f6fff33;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.server-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 40px #1f6fff55;
}

.server-card i {
    font-size: 2.2rem;
    color: #5aa2ff;
    margin-bottom: 15px;
    display: inline-block;
}

.server-card h3 {
    margin-top: 10px;
    font-size: 1.3rem;
}

.server-card p {
    margin-top: 10px;
    color: #9fb4ff;
    font-size: 0.95rem;
}

.server-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1f6fff, transparent);
    top: 0;
    left: 0;
}

@media (max-width: 900px) {
    .servers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.why-section {
    padding: 80px 0;
}

.why-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.why-text {
    max-width: 550px;
}

.why-text h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #5aa2ff, #8fd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-text p {
    margin-top: 20px;
    color: #9fb4ff;
    line-height: 1.7;
}

.why-list {
    margin-top: 25px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5ff;
}

.why-item i {
    color: #5aa2ff;
    font-size: 1.2rem;
}

.why-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 10px;
    border: 1px solid #1f6fff;
    color: #5aa2ff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.why-btn::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, transparent, #1f6fff55, transparent);
    left: -100%;
    transition: 0.6s;
}

.why-btn:hover::before {
    left: 100%;
}

.why-btn:hover {
    box-shadow: 0 0 20px #1f6fff88;
}

.why-image img {
    width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 50px #1f6fff33;
    transform: rotate(2deg);
    transition: 0.4s;
}

.why-image img:hover {
    transform: rotate(0deg) scale(1.03);
}

@media (max-width: 900px) {
    .why-grid {
        flex-direction: column;
        text-align: center;
    }

    .why-image img {
        width: 100%;
    }

    .why-item {
        justify-content: center;
    }
}

.reviews-section {
    padding: 80px 0;
    position: relative;
}

.reviews-wrapper {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: 0.5s;
}

.review-card {
    min-width: calc(33.333% - 20px);
    padding: 30px;
    border-radius: 20px;
    background: rgba(20, 30, 60, 0.35);
    backdrop-filter: blur(20px);
    border: 1px solid #1f6fff33;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #1f6fff55;
}

.stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    color: #9fb4ff;
    line-height: 1.6;
}

.review-card h4 {
    margin-top: 15px;
    color: #5aa2ff;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 30, 60, 0.6);
    border: 1px solid #1f6fff;
    color: #5aa2ff;
    font-size: 2rem;
    padding: 5px 15px;
    cursor: pointer;
    z-index: 2;
}

.prev {
    left: -10px;
}

.next {
    right: -10px;
}

.nav-btn:hover {
    box-shadow: 0 0 15px #1f6fff88;
}

@media (max-width: 900px) {
    .review-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 500px) {
    .review-card {
        min-width: 100%;
    }
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #5aa2ff, #8fd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    margin-top: 15px;
    color: #9fb4ff;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(20, 30, 60, 0.35);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid #1f6fff33;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #1f6fff33;
    background: rgba(10, 15, 30, 0.6);
    color: #e6ecff;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #5aa2ff;
    box-shadow: 0 0 10px #1f6fff55;
}

.contact-form button {
    padding: 12px;
    border: 1px solid #1f6fff;
    background: transparent;
    color: #5aa2ff;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    box-shadow: 0 0 15px #1f6fff88;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: rgba(20, 30, 60, 0.9);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #1f6fff44;
    backdrop-filter: blur(20px);
}

.popup-box h3 {
    color: #5aa2ff;
}

.popup-box button {
    margin-top: 20px;
    padding: 10px 25px;
    border: 1px solid #1f6fff;
    background: transparent;
    color: #5aa2ff;
    border-radius: 10px;
    cursor: pointer;
}

.popup-box button:hover {
    box-shadow: 0 0 15px #1f6fff88;
}

@media (max-width: 900px) {
    .contact-grid {
        flex-direction: column;
    }
}

.events-hero {
    padding: 80px 0;
}

.events-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.events-text {
    max-width: 550px;
}

.events-text h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #5aa2ff, #8fd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.events-text p {
    margin-top: 20px;
    color: #9fb4ff;
    line-height: 1.7;
}

.events-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border: 1px solid #1f6fff;
    border-radius: 10px;
    color: #5aa2ff;
    text-decoration: none;
}

.events-btn:hover {
    box-shadow: 0 0 20px #1f6fff88;
}

.events-image img {
    width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 50px #1f6fff33;
    transform: rotate(2deg);
    transition: 0.4s;
}

.events-image img:hover {
    transform: rotate(0deg) scale(1.03);
}

@media (max-width: 900px) {
    .events-grid {
        flex-direction: column;
        text-align: center;
    }

    .events-image img {
        width: 100%;
    }
}

.events-table-section {
    padding: 100px 0;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.events-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
}

.events-table thead {
    background: rgba(10, 15, 30, 0.8);
}

.events-table th {
    padding: 15px;
    text-align: left;
    color: #5aa2ff;
}

.events-table td {
    padding: 15px;
    color: #cbd5ff;
    border-top: 1px solid #1f6fff22;
}

.events-table tr:hover {
    background: rgba(31, 111, 255, 0.1);
}

.status {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
}

.live {
    background: #1f6fff33;
    color: #5aa2ff;
}

.upcoming {
    background: #00ff8844;
    color: #00ff88;
}

.about-new {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    max-width: 550px;
}

.about-text h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #5aa2ff, #8fd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-top: 20px;
    color: #9fb4ff;
    line-height: 1.7;
}

.about-image img {
    width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 50px #1f6fff33;
    transform: rotate(2deg);
    transition: 0.4s;
}

.about-image img:hover {
    transform: rotate(0deg) scale(1.03);
}

@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
    }
}

.steps-section {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    background: rgba(20, 30, 60, 0.35);
    backdrop-filter: blur(20px);
    border: 1px solid #1f6fff33;
    transition: 0.4s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #1f6fff55;
}

.step-card i {
    font-size: 2rem;
    color: #5aa2ff;
    margin-bottom: 15px;
}

.step-card h3 {
    margin-top: 10px;
}

.step-card p {
    margin-top: 10px;
    color: #9fb4ff;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(20, 30, 60, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid #1f6fff33;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 999;
}

.cookie-banner p {
    margin: 0;
    color: #cbd5ff;
}

.cookie-banner a {
    color: #5aa2ff;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid #1f6fff;
    background: transparent;
    color: #5aa2ff;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-buttons button:hover {
    box-shadow: 0 0 10px #1f6fff88;
}

.accept {
    background: #1f6fff;
    color: white;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}