:root {
    --bg-dark: #23272a;
    --bg-darker: #1e2124;
    --brand-primary: #5865F2;
    --brand-imperial-red: #da373c;
    --text-normal: #ffffff;
    --text-muted: #b9bbbe;
    --off-white: #f6f6f6;
    --font-primary: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-primary);
    background: linear-gradient(105deg, #1a1a1a 0%, #2c2f33 100%) fixed;
    color: var(--text-normal);
    line-height: 1.6;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Orbitron', sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
a:hover {
    text-decoration: underline;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    width: 100%;
}
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 10;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    font-weight: 600;
    font-size: 1rem;
}
.nav-links a:hover {
    text-decoration: underline;
}
.nav-cta {
    display: none;
}
.btn-login {
    background: white;
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.2s;
}
.btn-login:hover {
    color: var(--brand-imperial-red);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.hero {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    color: white;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(218, 55, 60, 0.1) 0%, transparent 25%);
    z-index: 1;
}
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    width: 100%;
}
.hero-content {
    max-width: 500px;
    text-align: left;
}
.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}
.hero p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 28px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    border: none;
    text-decoration: none;
}
.btn:active {
    transform: translateY(1px);
}
.btn-primary {
    background-color: white;
    color: var(--bg-dark);
}
.btn-primary:hover {
    color: var(--brand-imperial-red);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.btn-secondary {
    background-color: var(--bg-darker);
    color: white;
}
.btn-secondary:hover {
    background-color: #36393f;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.btn-danger {
    background-color: var(--brand-imperial-red);
    color: white;
}
.btn-danger:hover {
    background-color: #a1282c;
    text-decoration: none;
}
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
@media (max-width: 768px) {
    .hero-visual {
        display: none;
    }
    .hero-container {
        justify-content: center;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .navbar {
        position: relative;
    }
    .nav-links {
        display: none;
    }
}
.imperial-graphic {
    width: 300px;
    height: 300px;
    position: relative;
    transform: rotate(45deg);
}
.circle-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 10px solid white;
    border-radius: 50%;
    opacity: 0.1;
}
.circle-inner {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background-color: var(--brand-imperial-red);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(218, 55, 60, 0.5);
    animation: pulse 3s infinite ease-in-out;
}
.star-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    box-shadow: 0 0 20px 10px white;
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}
.feature-section {
    padding: 0;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.feature-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 1600px;
}
.feature-master-card {
    background-color: #f6f6f6;
    border-radius: 40px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    width: 95%;
    max-width: 1400px;
    height: 85vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 10;
}
#mission .feature-master-card {
    background-color: #23272a;
}
#troopers .feature-master-card {
    background-color: #f6f6f6;
    color: #23272a;
}
#troopers .feature-text p {
    color: #4f545c;
}
#benefits .feature-master-card {
    background-color: #23272a;
}
.feature-master-card.reverse {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-text h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.feature-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}
.feature-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}
.feature-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}
.feature-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.feature-card-bg {
    background-color: #00b0f4;
    border-radius: 20px;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
    overflow: hidden;
}
.feature-section:hover .feature-card-bg {
    transform: scale(1.02);
}
#mission .feature-card-bg {
    background-color: #23272a;
}
#troopers .feature-card-bg {
    background-color: #23272a;
}
#benefits .feature-card-bg {
    background-color: #23272a;
}
.feature-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: none;
    outline: none;
    display: block;
    position: relative;
    z-index: 2;
}
.feature-gif:hover {
    outline-color: rgba(218, 55, 60, 0.4);
    border-color: #da373c;
    box-shadow: 0 0 30px rgba(218, 55, 60, 0.5);
}
.placeholder-graphic {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.mission-graphic .bar {
    height: 20px;
    background: white;
    opacity: 0.2;
    margin: 20px;
    border-radius: 10px;
    width: 60%;
}
.mission-graphic .bar:nth-child(2) {
    width: 80%;
}
.mission-graphic .bar:nth-child(3) {
    width: 40%;
}
.trooper-graphic {
    position: relative;
    overflow: visible;
    z-index: 5;
    background: #23272a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.trooper-graphic .helmet-shape {
    width: 100px;
    height: 120px;
    background: white;
    margin: 90px auto;
    border-radius: 50px 50px 20px 20px;
    position: relative;
    z-index: 6;
    opacity: 0.1;
}
@keyframes color-cycle {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }
    25% {
        filter: drop-shadow(0 0 5px #5865F2) sepia(100%) hue-rotate(190deg) saturate(300%);
    }
    50% {
        filter: drop-shadow(0 0 5px #da373c) sepia(100%) hue-rotate(320deg) saturate(300%);
    }
    75% {
        filter: drop-shadow(0 0 5px #57F287) sepia(100%) hue-rotate(80deg) saturate(300%);
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }
}
.galaxy-graphic .planet {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #404EED, #da373c);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.galaxy-graphic .orbit {
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
    .feature-container,
    .feature-container.reverse {
        flex-direction: column;
        text-align: center;
    }
    .feature-text {
        margin: 0 auto;
    }
}
.cta-section.discord-footer-style {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    height: 100vh;
    background-color: #23272a;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.cta-section.discord-footer-style::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('enlist_footer_clean.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    transform: scale(1.15);
    transform-origin: center bottom;
    z-index: 0;
    pointer-events: none;
}
.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 1000px;
    position: relative;
    z-index: 2;
    background: transparent;
    backdrop-filter: none;
    padding: 60px 40px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin: 20px;
}
.footer-head {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    opacity: 0.85;
}
.cta-actions.footer-btn-wrapper {
    margin-bottom: auto;
    z-index: 10;
}
.btn-footer-action {
    background-color: #ffffff;
    color: #111;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.btn-footer-action:hover {
    background-color: #c0c0c0;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}
.footer-doodles-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto;
    position: relative;
    bottom: -10px;
}
.footer-doodles-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: contain;
    display: block;
}
.cta-bg-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.3;
    z-index: 1;
}
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
.delay-3 {
    animation-delay: 0.6s;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body.register-page {
    background-color: #050505;
    background-image: url('deathvader_red.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Share Tech Mono', monospace;
    overflow: hidden;
}
.terminal-casing {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(218, 55, 60, 0.3);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    max-width: 900px;
    width: 95%;
    position: relative;
    z-index: 10;
}
.terminal-casing::before,
.terminal-casing::after {
    color: rgba(255, 255, 255, 0.3);
}
.terminal-screen {
    background-color: rgba(20, 0, 0, 0.5);
    background-image:
        linear-gradient(rgba(218, 55, 60, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(218, 55, 60, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    border: 1px solid rgba(218, 55, 60, 0.3);
    border-radius: 4px;
    padding: 30px;
    min-height: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.7);
    color: #ff4d4d;
    text-shadow: 0 0 5px rgba(218, 55, 60, 0.5);
}
.terminal-screen::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 10;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    opacity: 0.3;
}
.imperial-form {
    max-width: 700px;
    margin: 40px auto 0;
    position: relative;
    z-index: 20;
}
.imperial-form label {
    display: block;
    color: #ff4d4d;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #ff4d4d;
}
.imperial-form input,
.imperial-form select {
    width: 100%;
    background: rgba(30, 0, 0, 0.5);
    border: 1px solid rgba(218, 55, 60, 0.3);
    color: #fff;
    padding: 15px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.imperial-form input:focus,
.imperial-form select:focus {
    border-color: #ff4d4d;
    background: rgba(50, 0, 0, 0.7);
    box-shadow: 0 0 15px rgba(218, 55, 60, 0.3);
    outline: none;
}
.imperial-form button {
    width: 100%;
    padding: 20px;
    background: rgba(218, 55, 60, 0.2);
    border: 1px solid #da373c;
    color: #ff4d4d;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(218, 55, 60, 0.1);
}
.imperial-form button:hover:not(:disabled) {
    background: #da373c;
    color: #fff;
    box-shadow: 0 0 40px rgba(218, 55, 60, 0.6);
    transform: translateY(-2px);
}
.imperial-form button:disabled {
    background: rgba(0, 0, 0, 0.5);
    border-color: #555;
    color: #777;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}
._3d-animation {
    width: 100%;
    background-color: var(--card-bg, #f6f6f6);
    border-radius: 40px;
    padding: 40px;
    margin: 0 auto;
    max-width: 1500px;
    height: 709px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
@media (max-width: 1550px) {
    ._3d-animation {
        width: 95%;
        height: auto;
        min-height: 709px;
    }
}
#mission ._3d-animation {
    --card-bg: #23272a;
}
#troopers ._3d-animation {
    --card-bg: #f6f6f6;
}
#benefits ._3d-animation {
    --card-bg: #23272a;
}
.home--block-group {
    width: 100%;
}
.home--2col_layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}
.home--2col_layout.is-reverse {
    flex-direction: row-reverse;
}
.home--text-wr {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}
#troopers .home--text-wr h2,
#troopers .home--text-wr p {
    color: #23272a;
}
#troopers .home--text-wr p {
    color: #4f545c;
}
#mission .home--text-wr h2,
#mission .home--text-wr p,
#benefits .home--text-wr h2,
#benefits .home--text-wr p {
    color: white;
}
.home--image-wr {
    flex: 1.5;
    height: 500px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.home--group-chat-img-wr {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--gif-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
#mission .home--group-chat-img-wr {
    --gif-bg-color: #da373c;
}
#troopers .home--group-chat-img-wr {
    --gif-bg-color: #5865F2;
}
#benefits .home--group-chat-img-wr {
    --gif-bg-color: #2D7D46;
}
.home--group-chat-img-wr img,
.home--group-chat-img-wr video,
.feature-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .home--2col_layout,
    .home--2col_layout.is-reverse {
        flex-direction: column;
        text-align: center;
    }
    .home--image-wr {
        width: 100%;
        margin-top: 40px;
        height: 300px;
    }
    ._3d-animation {
        padding: 40px 20px;
    }
}
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}
.success-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
    min-height: 100vh;
    justify-content: flex-start;
    align-items: center;
}
.status-banner.success {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    color: #4cd137;
}
.status-banner.error {
    background-color: rgba(218, 55, 60, 0.1);
    border: 1px solid var(--brand-imperial-red);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    color: var(--brand-imperial-red);
}
.details-card {
    background: var(--bg-darker);
    padding: 30px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    width: 100%;
}
.highlight {
    color: var(--brand-imperial-red);
}
.flag-box {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}
.flag {
    display: block;
    background: #000;
    padding: 10px;
    border-radius: 4px;
    font-family: monospace;
    color: #00ff00;
    margin-top: 10px;
    word-break: break-all;
}