/* Our Trenches - EXACT ipodotrun_v2 Carousel Replica */

/* Military Stencil Font */
@import url('https://fonts.cdnfonts.com/css/stencil-ww-ii');

/* Font Faces - Exact Fortnite fonts (site-wide) */
@font-face {
    font-family: 'HeadingNowVariable';
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url('HeadingNowVariable.woff2') format('woff2');
}

@font-face {
    font-family: 'HeadingNowVariable';
    font-style: italic;
    font-stretch: normal;
    font-display: swap;
    src: url('HeadingNowVariableItalic.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('Inter-Medium.woff2') format('woff2');
}

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

:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #121212;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-yellow: #f5f525;
    --accent-blue: #2563eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    zoom: 0.65;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    height: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    zoom: 1.45;
}

.nav-container {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.epic-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.epic-dropdown:hover {
    background: rgba(255,255,255,0.1);
}

.epic-logo-box {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.dropdown-icon {
    opacity: 0.7;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 24px;
}

.nav-logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s;
}

.nav-links li a:hover {
    background: rgba(255,255,255,0.1);
}

/* Nav Social Icons (Discord & X logos) */
.nav-icon-link {
    padding: 8px 10px !important;
}

.nav-social-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
    vertical-align: middle;
}

.nav-social-icon.discord-icon {
    height: 40px;
    width: 40px;
}

.nav-social-icon.x-icon {
    height: 44px;
    width: 44px;
    border-radius: 4px;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 8px 16px;
    gap: 8px;
    min-width: 200px;
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 14px;
    width: 100%;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.5);
}

.globe-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
}

.sign-in-btn {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
}

.download-btn {
    background: var(--accent-yellow);
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
}

/* ===== HERO SECTION WITH BACKGROUND ===== */
.hero-section {
    position: relative;
    min-height: 500px;
    padding-top: 80px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% -16%;
    transform: scale(1);
    transform-origin: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(13,13,13,0) 0%, 
        rgba(13,13,13,0) 40%,
        rgba(13,13,13,0.7) 70%,
        rgba(13,13,13,1) 100%
    );
}

.hero-text-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 120px 20px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-text-content {
        padding-top: 140px;
    }
}

@media (min-width: 1440px) {
    .hero-text-content {
        padding-top: 160px;
    }
}

@media (min-width: 1800px) {
    .hero-text-content {
        padding-top: 180px;
    }
}

.hero-trenches-logo {
    width: 2800px;
    max-width: 95%;
    height: auto;
    display: block;
    margin: -200px auto -200px;
}

@media (max-width: 1023px) {
    .hero-trenches-logo {
        width: 1600px;
        margin: -100px auto -100px;
    }
}

@media (max-width: 767px) {
    .hero-trenches-logo {
        width: 1000px;
        margin: -60px auto -60px;
    }
}

.hero-title {
    font-family: 'HeadingNowVariable', sans-serif;
    font-size: 72px;
    font-weight: 400;
    font-style: italic;
    font-variation-settings: "wdth" 825, "wght" 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 40px rgba(37, 99, 235, 0.5), 0 0 80px rgba(37, 99, 235, 0.3);
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
}

/* Epic Games Download Button */
.epic-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    color: #fff;
    padding: 32px 64px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 60px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.epic-download-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%);
    animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.epic-download-btn:hover {
    background: linear-gradient(135deg, #222 0%, #111 50%, #222 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 80px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.epic-btn-label {
    font-family: 'HeadingNowVariable', sans-serif;
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    font-variation-settings: "wdth" 825, "wght" 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
}

.epic-btn-logo {
    height: 72px;
    width: auto;
    display: block;
    filter: invert(1) brightness(2);
}

@media (max-width: 767px) {
    .epic-download-btn {
        padding: 20px 32px;
        gap: 16px;
        border-radius: 14px;
    }
    .epic-btn-label {
        font-size: 22px;
    }
    .epic-btn-logo {
        height: 48px;
    }
}

/* ===== 3D CAROUSEL - EXACT IPODOTRUN REPLICA ===== */
.carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 40px 16px 40px;
    z-index: 10;
    background: var(--bg-primary);
    margin-top: 0px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    min-height: 380px;
}

@media (min-width: 1280px) {
    .carousel-wrapper {
        min-height: 400px;
    }
}

@media (min-width: 1536px) {
    .carousel-wrapper {
        min-height: 480px;
    }
}

.carousel-track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Individual carousel card - wide rectangles */
.carousel-card {
    position: absolute;
    transition: all 700ms ease-out;
    width: 420px;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 640px) {
    .carousel-card {
        width: 500px;
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .carousel-card {
        width: 540px;
        height: 340px;
    }
}

@media (min-width: 1280px) {
    .carousel-card {
        width: 600px;
        height: 370px;
    }
}

@media (min-width: 1536px) {
    .carousel-card {
        width: 680px;
        height: 420px;
    }
}

/* Card inner - black/90 background with blur */
.card-inner {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    user-select: none;
    overflow: hidden;
}

/* Video card */
.card-inner.video-card {
    position: relative;
}

.card-inner.video-card .card-content {
    padding: 0;
}

.card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.card-content {
    padding: 16px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .card-content {
        padding: 20px;
    }
}

/* Card top row - icons left, status right */
.card-top-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.card-social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.social-link:hover {
    color: #fff;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

/* Status badges */
.card-status {
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.card-status.live {
    background: rgba(34, 197, 94, 0.2);
    color: rgb(74, 222, 128);
}

.card-status.pending {
    background: rgba(234, 179, 8, 0.2);
    color: rgb(250, 204, 21);
}

/* Card middle section */
.card-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.card-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    flex-shrink: 0;
    pointer-events: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .card-avatar {
        width: 100px;
        height: 100px;
    }
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-avatar.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.card-avatar.placeholder span {
    font-size: 32px;
    font-weight: bold;
    color: rgba(255,255,255,0.3);
}

.card-ticker {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
}

.card-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    font-family: helvetica, sans-serif;
}

@media (min-width: 640px) {
    .card-name {
        font-size: 20px;
    }
}

.card-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .card-description {
        font-size: 14px;
    }
}

.card-bottom {
    height: 16px;
}

/* Navigation arrows - EXACT heaven.xyz style */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background 0.2s;
    color: #fff;
    padding: 0;
}

@media (min-width: 640px) {
    .carousel-arrow {
        display: flex;
    }
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-arrow.left {
    left: -8px;
}

.carousel-arrow.right {
    right: -8px;
}

/* ===== FEATURES SECTION - EXACT Fortnite Layout ===== */
.features-section {
    padding: 80px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 24px;
}

.features-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    margin-bottom: 24px;
}

.features-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.5);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Row - Centered like Fortnite */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 120px;
    padding: 0 80px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

/* Row 1: Text Left, Image Right */
.feature-row:not(.reverse) .feature-text {
    flex: 0 0 480px;
}

.feature-row:not(.reverse) .feature-image {
    flex: 0 0 600px;
}

/* Row 2: Image Left, Text Right (HTML order is already correct) */
.feature-row.reverse {
    flex-direction: row;
    margin-top: 60px;
}

.feature-row.reverse .feature-image {
    flex: 0 0 600px;
}

.feature-row.reverse .feature-text {
    flex: 0 0 480px;
}

/* Text Styles - EXACT Fortnite */
.feature-heading {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feature-description {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-btn {
    display: inline-block;
    background: var(--accent-yellow);
    color: #000;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.feature-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(245, 245, 37, 0.3);
}

/* Image - extends to edge */
.feature-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.feature-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-row:not(.reverse) .feature-text,
    .feature-row.reverse .feature-text {
        width: 40%;
        padding: 0 40px;
    }
    
    .feature-row:not(.reverse) .feature-image,
    .feature-row.reverse .feature-image {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .features-title {
        font-size: 28px;
    }
    
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 24px;
    }
    
    .feature-row:not(.reverse) .feature-text,
    .feature-row.reverse .feature-text {
        width: 100%;
        padding: 0 24px;
        order: 2;
    }
    
    .feature-row:not(.reverse) .feature-image,
    .feature-row.reverse .feature-image {
        width: 100%;
        margin: 0;
        order: 1;
    }
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--bg-primary);
    padding: 48px 48px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: 'HeadingNowVariable', sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    font-variation-settings: "wdth" 825, "wght" 700;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    color: var(--text-primary);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
}

.back-to-top {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .search-box { display: none; }
    .footer-links { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-title { font-size: 32px; letter-spacing: 2px; text-align: center; margin-left: auto; margin-right: auto; }
}

/* ===== SUPPORT BUTTON ===== */
.support-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.jobs-btn {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    transition: all 0.2s ease;
}

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

/* ===== X.COM VERIFICATION BANNER ===== */
.verification-banner {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-top: 93px;
    position: relative;
    z-index: 999;
}

.verification-banner a {
    color: #4da6ff;
    text-decoration: underline;
}

.verification-banner a:hover {
    color: #7dc4ff;
}

/* ===== SUPPORT FORM OVERLAY ===== */
.support-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.support-overlay.active {
    opacity: 1;
    visibility: visible;
}

.support-form-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.support-overlay.active .support-form-container {
    transform: translateY(0);
}

.support-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}

.support-close-btn:hover {
    color: #fff;
}

.support-title {
    font-family: 'HeadingNowVariable', sans-serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.support-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 24px;
}

.support-form-container .form-group {
    margin-bottom: 20px;
}

.support-form-container label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.support-form-container input,
.support-form-container textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.support-form-container input:focus,
.support-form-container textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255,255,255,0.08);
}

.support-form-container input::placeholder,
.support-form-container textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.support-form-container textarea {
    resize: vertical;
    min-height: 100px;
}

.support-submit-btn {
    width: 100%;
    background: var(--accent-yellow);
    color: #000;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.support-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 245, 37, 0.3);
}

.support-email-note {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-top: 20px;
}

.support-success {
    text-align: center;
    padding: 20px 0;
}

.support-success svg {
    margin-bottom: 16px;
}

.support-success h2 {
    font-family: 'HeadingNowVariable', sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.support-success p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

/* Make X icon bigger in nav */
.nav-social-icon.x-icon {
    height: 48px;
    width: 48px;
}

/* ===== WALLET CONNECTED STATE ===== */
.sign-in-btn.connected {
    background: rgba(245, 245, 37, 0.1);
    border: 1px solid rgba(245, 245, 37, 0.3);
    color: var(--accent-yellow);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sign-in-btn.connected:hover {
    background: rgba(245, 245, 37, 0.15);
    border-color: rgba(245, 245, 37, 0.5);
}

/* Wallet Info Container - Connected State */
.wallet-info-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(245, 245, 37, 0.08);
    border: 1px solid rgba(245, 245, 37, 0.25);
    border-radius: 10px;
    padding: 6px 14px;
}

.wallet-address-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wallet-copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    padding: 4px 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.wallet-copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.wallet-address {
    font-family: 'Inter', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.wallet-name-btn {
    background: rgba(245, 245, 37, 0.15);
    border: 1px solid rgba(245, 245, 37, 0.3);
    color: var(--accent-yellow);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.wallet-name-btn:hover {
    background: rgba(245, 245, 37, 0.25);
    border-color: rgba(245, 245, 37, 0.5);
}

.wallet-stats-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 12px;
    margin-left: 4px;
}

.wallet-balance {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #4ade80;
}

.wallet-rewards {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
}
