:root {
    --primary: #00f2ff;
    --primary-dim: #008c94;
    --accent: #ffffff;
    --bg-dark: #050510;
    --glass: rgba(10, 15, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #e0e0e0;
}

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

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.lightbox-nav:hover {
    background: var(--primary);
    color: black;
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg_v5.png') no-repeat center center/cover;
    z-index: -1;
}

.bg-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 16, 0.8) 0%, rgba(5, 5, 16, 0.2) 50%, rgba(5, 5, 16, 0.8) 100%);
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: 'Marcellus SC', serif;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 4px;
    font-weight: 700;
}

.logo span {
    color: var(--primary);
    font-size: 0.7rem;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    /* Reduced gap V2 */
    list-style: none;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    /* Reduced font size V2 */
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
    padding: 5px 0;
}

nav a:hover,
nav a.active {
    color: white;
    text-shadow: 0 0 10px var(--primary);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    /* Thinner line */
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.nav-cta a {
    background: var(--primary);
    color: black !important;
    padding: 8px 35px;
    /* More padding for shape */
    font-weight: 800;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    transition: 0.3s;
    text-shadow: none !important;
    border: none;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 100%, 0% 100%);
    display: inline-block;
    text-align: center;
}

.nav-cta a span {
    display: inline-block;
    transform: none;
}

.nav-cta a:hover {
    background: white;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.8);
    transform: translateY(-2px);
}

.nav-cta a::after {
    display: none;
}

.server-status {
    font-size: 0.65rem;
    /* Reduced V2 */
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a0a0a0;
    border: 1px solid var(--glass-border);
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 5px #00ff88;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    height: calc(100vh - 60px);
}

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

.pre-title {
    color: var(--primary);
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

h1 {
    font-family: 'Marcellus SC', serif;
    font-size: 4.5rem;
    line-height: 1;
    margin: 0.5rem 0;
    color: white;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
    position: relative;
}

.h-two {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    margin-left: 6px;
    font-size: 3rem
}

p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.play-btn {
    position: relative;
    padding: 0.8rem 2.5rem;
    background: var(--primary);
    border: none;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    overflow: hidden;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: transform 0.2s;
    font-size: 0.8rem;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
}

.trailer-btn {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8rem;
}

.trailer-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}


.store-buttons {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 10;
    flex-wrap: wrap;
    padding: 0 20px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    /* Reduced padding V2 */
    border-radius: 8px;
    color: white;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.store-btn:hover {
    background: rgba(0, 242, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.store-btn svg {
    width: 22px;
    /* Reduced V2 */
    height: 22px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.btn-text span {
    font-size: 0.6rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-text strong {
    font-size: 0.85rem;
    /* Reduced V2 */
    letter-spacing: 0.3px;
}

.login-card {
    width: 300px;
    /* Reduced V2 */
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    /* Reduced padding V2 */
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s;
}

.login-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.card-header h2 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.card-header p {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    color: #888;
}

.auth-switch {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px;
    border-radius: 6px;
    display: flex;
    margin-bottom: 1.2rem;
}

.switch-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #888;
    padding: 6px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 0.75rem;
}

.switch-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
}

.input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 6px 0;
    color: white;
    font-size: 0.85rem;
    transition: 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.input-wrapper label {
    position: absolute;
    left: 0;
    top: 6px;
    color: #888;
    pointer-events: none;
    transition: 0.3s;
    font-size: 0.75rem;
}

.input-wrapper input:focus~label,
.input-wrapper input:valid~label {
    top: -10px;
    font-size: 0.65rem;
    color: var(--primary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    margin-bottom: 1.2rem;
    align-items: center;
}

.form-options a {
    color: #aaa;
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    padding: 0.6rem;
    background: var(--primary-dim);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8rem;
}

.submit-btn:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

.submit-btn.disabled {
    background: #555 !important;
    color: #888 !important;
    cursor: not-allowed;
    box-shadow: none !important;
    border: 1px solid #666;
}

.submit-btn.disabled:hover {
    transform: none;
    background: #555 !important;
}

.submit-btn.register-mode {
    background: var(--primary-dim);
    color: white;
}

.auth-form {
    display: none;
    animation: slideIn 0.3s ease;
}

.auth-form.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-section {
    padding: 2rem 0;
    margin-top: 5rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.gallery-title {
    text-align: center;
    font-family: 'Marcellus SC', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px var(--primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: var(--primary);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--primary);
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;

    width: max-content;
    transition: transform 0.5s ease-out;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slide-card {
    min-width: 350px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    cursor: pointer;
}

.slide-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    z-index: 5;
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.slide-card:hover img {
    transform: scale(1.1);
}

.slider-nav-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 15px var(--primary);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}


.events-section {
    padding: 2rem 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.day-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.day-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.day-card.active-day {
    border-color: var(--primary);
    background: linear-gradient(to bottom, rgba(0, 242, 255, 0.1), rgba(0, 0, 0, 0.6));
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.day-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}

.day-name {
    font-family: 'Marcellus SC', serif;
    font-size: 1.2rem;
    color: var(--primary);
    display: block;
}

.active-day .day-name {
    text-shadow: 0 0 10px var(--primary);
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 6px;
    border-left: 2px solid #555;
    transition: 0.3s;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary);
}

.event-time {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 2px;
}

.event-name {
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

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

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

    .events-section {
        padding: 2rem 1.5rem;
    }
}

.faq-section {
    padding: 2rem 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.6);
}

.faq-question {
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #e0e0e0;
    transition: 0.3s;
}

.faq-question:hover {
    color: white;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.2rem;
    margin: 0;
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1.5rem;
    }
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.ranking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.ranking-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.rank-num {
    font-family: 'Marcellus SC', serif;
    font-weight: 700;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #888;
}

.about-page {
    padding-top: 100px;
    padding-bottom: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-top: 0.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto;
    box-shadow: 0 0 10px var(--primary);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 0 2rem;
}

.glass-pane {
    background: rgba(10, 15, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-section h2,
.features-section h2,
.team-section h2 {
    font-family: 'Marcellus SC', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.story-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1rem;
    max-width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.f-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Marcellus SC', serif;
    margin-bottom: 1rem;
    color: white;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-card {
    width: 250px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 1.5rem;
    transition: 0.3s;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.member-avatar {
    width: 100%;
    height: 200px;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--primary);
}

.avatar-1 {
    background: linear-gradient(45deg, #2b5876, #4e4376);
}

.avatar-2 {
    background: linear-gradient(45deg, #141e30, #243b55);
}

.avatar-3 {
    background: linear-gradient(45deg, #0f2027, #2c5364);
}

.member-info {
    padding: 1rem;
}

.member-info h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.member-info span {
    color: #aaa;
    font-size: 0.85rem;
    letter-spacing: 1px;
}



.rank-1 .rank-num {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rank-2 .rank-num {
    background: linear-gradient(135deg, #E0E0E0, #B0B0B0);
    color: black;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.4);
}

.rank-3 .rank-num {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: white;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.4);
}

.rank-name {
    flex: 1;
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: 500;
}

.ranking-item:hover .rank-name {
    color: white;
}

.rank-level {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    background: rgba(0, 242, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.contact-section {
    width: 100%;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.section-desc {
    color: #bbb;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .input-wrapper {
    flex: 1;
}

.textarea-wrapper {
    margin-top: 1rem;
}

.textarea-wrapper textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 0;
    color: white;
    font-size: 0.9rem;
    min-height: 100px;
    resize: vertical;
    transition: 0.3s;
}

.textarea-wrapper textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.textarea-wrapper label {
    top: 10px;
}

.textarea-wrapper textarea:focus~label,
.textarea-wrapper textarea:valid~label {
    top: -10px;
    font-size: 0.65rem;
    color: var(--primary);
}

.select-wrapper select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 0;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.select-wrapper select option {
    background: #050510;
    color: white;
    padding: 10px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.5rem;
    transition: 0.3s;
}

.icon-box.discord {
    color: #5865F2;
}

.icon-box.email {
    color: #ffca28;
}

.info-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    font-family: 'Marcellus SC', serif;
    margin-bottom: 0.5rem;
    color: white;
}

.quick-link-btn {
    margin-top: 1rem;
    padding: 8px 25px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.3s;
}

.quick-link-btn:hover {
    background: #4752c4;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.email-text {
    font-family: monospace;
    color: var(--primary);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

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

    .form-row {
        flex-direction: column;
        flex-direction: column;
        gap: 0;
    }
}

.site-footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: auto;
    /* Push to bottom if flex column */
    position: relative;
    z-index: 50;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Marcellus SC', serif;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--primary);
    font-size: 0.6rem;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #888;
    font-size: 0.8rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.s-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: 0.3s;
}

.s-icon:hover {
    color: white;
    background: var(--primary-dim);
    transform: translateY(-2px);
}

.s-icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.download-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    width: 250px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.dl-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.download-card.ios .dl-icon {
    color: #fff;
}

.download-card.android .dl-icon {
    color: #3DDC84;
}

.download-card.apk .dl-icon {
    color: #fabc09;
}

.download-card.testflight .dl-icon {
    color: #2CA7E9;
}

.download-card.pc .dl-icon {
    color: #00A4EF;
}

.dl-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.dl-info h3 {
    color: white;
    font-size: 1.1rem;
    font-family: 'Marcellus SC', serif;
}

.dl-info span {
    color: #888;
    font-size: 0.75rem;
}

.dl-action {
    background: var(--primary-dim);
    color: white;
    padding: 8px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
}

.download-card:hover .dl-action {
    background: var(--primary);
    color: black;
}

.sys-req-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    color: #eee;
}

.sys-req-table th,
.sys-req-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.sys-req-table th {
    color: var(--primary);
    font-family: 'Marcellus SC', serif;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary);
}

.sys-req-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.driver-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.driver-btn {
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.driver-btn.nvidia:hover {
    background: #76b900;
    border-color: #76b900;
    color: black;
}

.driver-btn.amd:hover {
    background: #ed1c24;
    border-color: #ed1c24;
}

.drivers-link h3 {
    text-align: center;
    color: #ccc;
    font-size: 1rem;
}

.small-pane {
    padding: 1.5rem 3rem;
}

.req-note {
    margin-top: 1.5rem;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.req-note p {
    margin-bottom: 0.5rem;
}

.language-selector {
    position: relative;
    font-size: 0.8rem;
    color: white;
    cursor: pointer;
    margin-right: 1.5rem;
}

.selected-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: 0.3s;
}

.selected-lang:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 120px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 5px;
    display: none;
    flex-direction: column;
    padding: 5px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.language-selector:hover .lang-dropdown {
    display: flex;
    animation: fadeIn 0.2s ease;
}

.lang-dropdown a {
    text-decoration: none;
    color: #aaa;
    padding: 8px 15px;
    font-size: 0.75rem;
    transition: 0.2s;
    text-align: left;
}

.lang-dropdown a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}


.legal-content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 3rem;
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.legal-nav a {
    color: #aaa;
    text-decoration: none;
    font-family: 'Marcellus SC', serif;
    font-size: 1.2rem;
    transition: 0.3s;
    position: relative;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.legal-section h2 {
    color: var(--primary);
    font-family: 'Marcellus SC', serif;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

.legal-section h3 {
    color: white;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.text-block p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.divider-horizontal {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4rem 0;
}

.news-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    color: white;
    text-transform: uppercase;
}

.news-category.update {
    background: #00A4EF;
}

.news-category.event {
    background: #fabc09;
    color: black;
}

.news-category.maintenance {
    background: #D71526;
}

.news-category.community {
    background: #3DDC84;
    color: black;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #999;
}

.news-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
    font-family: 'Marcellus SC', serif;
}

.news-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: 0.3s;
}

.read-more:hover {
    color: white;
    transform: translateX(5px);
}

.guide-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.guide-sidebar {
    width: 250px;
    padding: 2rem;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.guide-sidebar h3 {
    color: var(--primary);
    font-family: 'Marcellus SC', serif;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.guide-nav {
    list-style: none;
    padding: 0;
}

.guide-nav li {
    margin-bottom: 0.5rem;
}

.guide-nav a {
    text-decoration: none;
    color: #aaa;
    display: block;
    padding: 10px;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.guide-nav a:hover,
.guide-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
}

.guide-content {
    flex-grow: 1;
    padding: 3rem;
}

.guide-content h2 {
    color: var(--primary);
    font-family: 'Marcellus SC', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.guide-content h3 {
    color: white;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.guide-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.guide-list {
    list-style: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-list li {
    color: #ccc;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.guide-list li strong {
    color: white;
    min-width: 150px;
    display: inline-block;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.class-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: 0.3s;
}

.class-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.class-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Marcellus SC', serif;
}

.class-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

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

    .guide-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 2rem;
    }
}

.support-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 2rem;
}

.login-required-card {
    text-align: center;
    max-width: 500px;
    padding: 3rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lock-icon {
    color: #999;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.login-required-card h2 {
    color: var(--primary);
    font-family: 'Marcellus SC', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.login-required-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.support-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    background: white;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.support-note p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

.support-note a {
    color: #aaa;
    text-decoration: none;
    border-bottom: 1px dashed #aaa;
    transition: 0.2s;
}

.support-note a:hover {
    color: white;
    border-bottom-color: white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.guide-content article {
    display: none;
    animation: fadeIn 0.4s ease;
}

.guide-content article.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide-content .divider-horizontal {
    display: none;
}