:root {
    /* Fallback colors, overridden by dynamically extracted logo color */
    --theme-color: #c27360; /* Logo Copper/Salmon */
    --theme-color-glow: rgba(194, 115, 96, 0.3);
    --theme-color-text-glow: rgba(194, 115, 96, 0.6);
    --font-primary: 'Inter', sans-serif;
    --text-white: #ffffff;
    --text-muted: #cccccc;
    --bg-dark: #0a0a0a;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-white);
    overflow-x: hidden;
    background-color: var(--bg-dark); /* Ensure it's not hiding the child */
    min-height: 100vh;
}

/* Background Layers */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('UDXBANNER.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Adding subtle scale for premium feel */
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.8) 100%
    );
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 100;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Logo (Text-based to match RAZE SOFTWARE style) */
.nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.nav-logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-white);
    font-style: italic;
    letter-spacing: 1px;
}

.nav-logo-sub {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--theme-color);
    letter-spacing: 4px;
    margin-top: 2px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

/* Nav Actions (Icons & Buttons) */
.nav-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.nav-btn-icon.theme-border {
    background: var(--theme-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--theme-color-glow);
}

.nav-btn-icon.theme-border:hover {
    background: var(--theme-color);
    filter: brightness(1.15);
    color: var(--bg-dark);
}

.nav-btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--theme-color);
    color: var(--bg-dark);
    padding: 0 1.2rem;
    height: 38px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--theme-color-glow);
}

.nav-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--theme-color-text-glow);
    filter: brightness(1.15);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    gap: 0.5rem; /* Tight gap */
    animation: centerReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes centerReveal {
    0% { opacity: 0; transform: scale(0.9); filter: blur(10px); }
    100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* Top Logo & Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.brand-logo {
    width: 32px; /* Fixed small size */
    height: 32px;
    object-fit: contain;
}

.brand-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    opacity: 0.9;
}

/* Typography */
.titles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0; /* No gap between subtitle and title */
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.main-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    flex-direction: column;
    margin-top: -5px; /* Pull up to subtitle */
}

/* Dynamically styled color text */
.highlight {
    color: var(--theme-color);
    text-shadow: 0 0 20px var(--theme-color-glow);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

/* Call to Action Button */
.cta-button {
    margin-top: 1.5rem; /* Push down from text */
    display: flex;
    align-items: center;
    background: rgba(40, 40, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.cta-button:hover {
    background: rgba(50, 50, 50, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--theme-color-glow);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-text {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 1.5rem;
}

.btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /* Theme color background for the arrow circle */
    background-color: var(--theme-color);
    color: var(--bg-dark); /* Arrow color itself dark */
    box-shadow: 0 0 15px var(--theme-color-glow);
    transition: all 0.3s ease;
}

.cta-button:hover .btn-icon {
    transform: rotate(-15deg) scale(1.1);
}

.btn-icon svg {
    width: 18px;
    height: 18px;
}


.flowing-band {
    width: 100%;
    background-color: var(--theme-color);
    padding: 1.2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 40px var(--theme-color-glow);
    display: flex;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    padding-left: 2rem;
    min-width: 100%;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    color: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 3rem;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* About Section */
.about-section {
    position: relative;
    padding: 12rem 2rem;
    background-color: var(--bg-dark);
    z-index: 10;
    overflow: hidden;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

/* Visual Cards - SIGNIFICANTLY LARGER */
.about-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    width: 100%;
}

.card {
    position: absolute;
    width: 280px; /* Made bigger */
    height: 180px; /* Made bigger */
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.4) 0%, rgba(20, 20, 20, 0.6) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    z-index: 2;
}

.card:hover {
    border-color: var(--theme-color);
    box-shadow: 0 0 50px var(--theme-color-glow);
    background: rgba(60, 60, 60, 0.5);
    /* No transform here to prevent any movement */
}

.card-1 { transform: rotate(-12deg) translate(-120px, -100px); z-index: 3; }
.card-2 { transform: rotate(8deg) translate(40px, -20px); z-index: 4; }
.card-3 { transform: rotate(-4deg) translate(100px, 140px); z-index: 2; }

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--theme-color-glow));
}

.card-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-style: italic;
    color: var(--theme-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.card-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mini Logo Seal - FIXED POSITION */
.mini-logo-seal {
    position: absolute;
    bottom: 50px;
    right: 15%;
    width: 140px;
    height: 140px;
    background: var(--bg-dark);
    border: 4px solid var(--theme-color);
    border-radius: 50%;
    padding: 5px; /* Reduced from 15px to allow logo to grow */
    z-index: 6;
    animation: rotateSeal 15s linear infinite;
    box-shadow: 0 0 40px var(--theme-color-glow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.seal-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seal-inner img {
    width: 100%; /* Increased from 80% to fill the circle */
    height: auto;
    object-fit: contain;
}

/* About Text */
.about-content {
    text-align: left;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--theme-color);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    background: var(--theme-color-glow);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

.about-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2.5rem;
}

.text-highlight {
    color: var(--theme-color);
    text-shadow: 0 0 30px var(--theme-color-glow);
}

.about-description {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 550px;
}

.about-list {
    list-style: none;
    margin-bottom: 4rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.list-bullet {
    width: 24px;
    height: 24px;
    border: 4px solid var(--theme-color);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 10px var(--theme-color-glow);
}

.list-bullet::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--theme-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.discord-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.discord-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--theme-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px var(--theme-color-glow);
}

/* Responsive Adjusments */
@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-visuals {
        height: 500px;
    }
    .mini-logo-seal {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .subtitle { font-size: 1.3rem; }
    .main-title { font-size: 2.22rem; }
    .about-title { font-size: 2.5rem; }
    .card { width: 220px; height: 140px; }
    .card-1 { transform: translate(-80px, -80px); }
    .card-3 { transform: translate(80px, 80px); }
}

@media (max-width: 480px) {
    .nav-container { padding: 0 1rem; }
    .nav-btn-icon:not(.theme-border) { display: none; }
    .nav-btn-login { font-size: 0; padding: 0; width: 38px; justify-content: center; }
    .card { width: 180px; height: 120px; }
    .about-visuals { height: 400px; }
    .mini-logo-seal { width: 100px; height: 100px; }
}

@keyframes rotateSeal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Products Section */
.products-section {
    position: relative;
    padding: 8rem 2rem;
    background-color: var(--bg-dark);
    z-index: 10;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: var(--theme-color);
    text-align: center; /* Centered by default */
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
}

.category-tabs::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.category-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    opacity: 0.5;
}

.category-btn.active {
    opacity: 1;
    color: var(--theme-color);
}

.cat-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-btn.active .cat-icon-box {
    background: var(--theme-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--theme-color-glow);
}

.category-btn span {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Card */
.product-display-card {
    display: none;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(40, 40, 40, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    backdrop-filter: blur(10px);
}

.product-display-card.active {
    display: grid;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--theme-color);
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.product-desc {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.product-cta-btn {
    background: var(--theme-color);
    color: var(--bg-dark);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--theme-color-glow);
}

.product-cta-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 15px 40px var(--theme-color-glow);
}

/* Product Visual Placeholder */
.product-visual {
    position: relative;
}

.visual-placeholder {
    background: linear-gradient(135deg, rgba(30,30,30,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.chip-svg {
    width: 150px;
    height: 150px;
}

.visual-text {
    text-align: center;
}

.visual-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8;
}

.visual-text span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--theme-color);
}

/* Testimonials Section - Bounded Box Version */
.testimonials-wrapper {
    padding: 10rem 2rem;
    position: relative;
    z-index: 10;
    background-color: var(--bg-dark); /* Block the global background */
}

.testimonials-box {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    background: transparent;
    border-radius: 40px;
    overflow: hidden;
    padding: 6rem 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.testimonials-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Increased from 0.15 */
    filter: blur(3px);
}

.testimonials-bg .bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.8) 100%),
                radial-gradient(circle at center, transparent 0%, rgba(10,10,10,0.6) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: left;
}

.stats-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.stats-mini-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.stats-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.stats-value .percentage {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--theme-color);
    line-height: 1;
}

.stats-value .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 30px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-white);
    transition: opacity 0.3s ease;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.user-info strong {
    font-size: 1.4rem;
    font-weight: 900;
}

.testimonial-nav {
    display: flex;
    gap: 1.5rem;
}

.nav-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--theme-color);
    color: var(--bg-dark);
    border-color: var(--theme-color);
    box-shadow: 0 0 20px var(--theme-color-glow);
    transform: translateY(-3px);
}

@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .testimonials-title, .stats-mini-card {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .testimonials-box {
        padding: 4rem 2rem;
    }
}

/* Status Section */
.status-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    position: relative;
    z-index: 10;
}

.status-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem; /* Slightly more gap */
    align-items: center; /* Center cards vertically */
    justify-content: center; /* Center cards horizontally */
}

/* Left Status Card */
.status-main-card {
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    width: 320px; /* Adjusted width */
    height: 320px; /* Make it more square like SS */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden; /* Clip the STATUS text */
}

.status-check-box {
    width: 120px;
    height: 120px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    margin-bottom: 2rem;
    box-shadow: 0 0 40px rgba(255,255,255,0.1);
}

.status-check-box svg {
    width: 60px;
    height: 60px;
}

.status-label {
    font-size: 2.22rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    color: var(--theme-color);
    text-shadow: 0 0 20px var(--theme-color-glow);
}

.status-vertical-text {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem; /* Much larger and subtler */
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    letter-spacing: 10px;
    pointer-events: none;
    line-height: 1;
    z-index: 1;
}

.status-label, .status-check-box {
    position: relative;
    z-index: 2; /* Bring content above text */
}

/* Right Status List */
.status-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.status-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--theme-color-glow);
    transform: translateX(10px);
}

.status-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
}

.status-item-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.status-item-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.status-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--theme-color);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--theme-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--theme-color);
}

.pulse {
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 var(--theme-color-glow); }
    70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 10px rgba(0,0,0,0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* FAQ Section */
.faq-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    position: relative;
    z-index: 10;
}

.faq-badge-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.mini-badge-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Side Box */
.faq-side-box {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.faq-side-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-side-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    color: var(--theme-color);
}

.faq-side-icon svg {
    width: 100%;
    height: 100%;
}

.faq-side-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--theme-color);
}

.faq-help-card {
    background: var(--theme-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--bg-dark);
    font-weight: 900;
    box-shadow: 0 15px 35px var(--theme-color-glow);
}

.help-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    color: var(--theme-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.faq-vertical-text {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    letter-spacing: 20px;
    z-index: -1;
}

/* Accordion */
.faq-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
}

.faq-plus {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 2rem;
    opacity: 1;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
    background: var(--theme-color);
    color: var(--bg-dark);
}

@media (max-width: 1000px) {
    .faq-container {
        flex-direction: column;
        align-items: center;
    }
    .faq-side-box {
        width: 100%;
        max-width: 500px;
    }
    .faq-accordion {
        width: 100%;
    }
}

/* Main Footer - Compact & Centered Mockup Match */
.main-footer {
    padding: 80px 0 40px 0;
    background: #000;
    position: relative;
    z-index: 10;
}

.main-footer .container {
    max-width: 1200px; /* Her şeyi bir arada tutacak genişlik */
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 350px 1fr; /* Sol tarafı biraz daha daralttık toplu durması için */
    gap: 0;
    margin-bottom: 50px;
}

.footer-left-info {
    padding-right: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #888;
    margin-bottom: 40px;
}

.footer-motto {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.footer-motto .text-highlight {
    color: var(--theme-color);
}

.footer-right-area {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    text-transform: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

/* Newsletter: full width below 3 columns */
.footer-newsletter {
    width: 100%;
    display: block;
}

.footer-newsletter h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.footer-discord-btn {
    background: var(--theme-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    width: 100%;
    max-width: 450px; /* Butonu aşırı devasa olmasın diye sınırladık */
    transition: 0.3s;
    box-shadow: 0 10px 30px var(--theme-color-glow);
}

.footer-discord-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.footer-divider-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 40px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--theme-color);
    color: #000;
    border-color: var(--theme-color);
}

@media (max-width: 1000px) {
    .footer-content-grid {
        flex-direction: column;
    }
    .footer-left-info {
        flex: none;
        width: 100%;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .footer-right-area {
        padding-left: 0;
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Authentication Pages (Login/Register) */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.auth-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 450px;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    text-align: center;
}

.auth-card h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.auth-card p {
    color: #888;
    margin-bottom: 40px;
    font-weight: 500;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-group {
    text-align: left;
}

.auth-group label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-left: 5px;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 25px;
    border-radius: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.auth-input:focus {
    outline: none;
    border-color: var(--theme-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px var(--theme-color-glow);
}

.auth-submit-btn {
    background: var(--theme-color);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 30px var(--theme-color-glow);
}

.auth-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--theme-color-glow);
}

.auth-footer {
    margin-top: 30px;
    color: #888;
    font-size: 14px;
    font-weight: 600;
}

.auth-footer a {
    color: var(--theme-color);
    text-decoration: none;
    margin-left: 5px;
}

.auth-alert {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
}

.auth-alert.error {
    background: rgba(255, 50, 50, 0.1);
    color: #ff5050;
    border: 1px solid rgba(255, 50, 50, 0.2);
}

.auth-alert.success {
    background: rgba(50, 255, 50, 0.1);
    color: #32ff32;
    border: 1px solid rgba(50, 255, 50, 0.2);
}

/* Back Button Styles */
.back-btn {
    position: absolute;
    top: 100px;
    left: 20px;
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 750;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.back-btn:hover {
    background: var(--theme-color);
    color: #000;
    border-color: var(--theme-color);
    transform: translateX(-8px);
    box-shadow: 0 0 30px var(--theme-color-glow);
}

.back-btn svg {
    width: 20px;
    height: 20px;
}

/* Shopping Cart Page Styles */
.cart-page {
    padding: 150px 20px 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cart-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.cart-items {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 150px 100px;
    align-items: center;
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.cart-item-info p {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0,0,0,0.3);
    padding: 8px 15px;
    border-radius: 12px;
    width: fit-content;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 900;
    transition: 0.3s;
}

.qty-btn:hover {
    background: var(--theme-color);
    color: #000;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    text-align: right;
}

.remove-item {
    color: #ff3232;
    cursor: pointer;
    font-weight: 900;
    font-size: 1.5rem;
    text-align: center;
    transition: 0.3s;
    background: none;
    border: none;
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-summary {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 30px;
    height: fit-content;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
}

.summary-label { color: #888; }
.summary-value { color: #fff; }

.summary-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 1.3rem;
    font-weight: 900;
}

.checkout-btn {
    background: var(--theme-color);
    color: #000;
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: none;
    font-weight: 900;
    font-size: 16px;
    margin-top: 25px;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--theme-color-glow);
    transition: 0.3s;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--theme-color-glow);
}

.empty-cart {
    text-align: center;
    padding: 50px;
}

.empty-cart p {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 30px;
}

.warning-box {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid #ff3232;
    padding: 20px;
    border-radius: 15px;
    color: #ff3232;
    margin-top: 20px;
    font-weight: 700;
    display: none;
}

@media (max-width: 1000px) {
    .cart-container { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 100px 1fr 1fr; }
    .remove-item { grid-row: 1; grid-column: 3; text-align: right; }
}

@media (max-width: 600px) {
    .cart-item { grid-template-columns: 80px 1fr; }
    .cart-quantity { grid-column: span 2; }
    .item-price { grid-column: span 2; text-align: left; }
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3232;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

.nav-btn-icon {
    position: relative; /* Badge position relative to this */
}
