:root {
    --bg-main: #06050b;
    --bg-surface: #100f1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    
    --primary: #8a2be2;
    --primary-light: #b66dff;
    --primary-glow: rgba(138, 43, 226, 0.5);
    
    --secondary: #00f0ff;
    --secondary-glow: rgba(0, 240, 255, 0.5);
    
    --gold: #ffbe0b;
    --diamond: #00f5d4;
    --valhallan: #ff7ef4;
    
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Utils */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.7rem;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6020a0);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.w-100 {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(6, 5, 11, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(6, 5, 11, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary-light);
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.3;
    z-index: -1;
    filter: blur(80px);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.hero-logo {
    height: 48px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    animation: float 4s ease-in-out infinite;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner {
    position: absolute;
    top: 15%;
    left: 38%;
    transform: translate(-50%, -50%);
    width: 35%; /* Scales with the screen */
    max-width: 200px; /* Keeps the size you liked on PC */
    min-width: 120px; /* Prevents it from disappearing on tiny screens */
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
    animation: pulse 6s infinite alternate;
}

.floating-card {
    position: absolute;
    background: rgba(16, 15, 26, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.valhallan-card {
    top: 20%;
    right: 15%;
    border-left: 4px solid var(--valhallan);
}

.diamond-card {
    bottom: 25%;
    left: 10%;
    border-left: 4px solid var(--diamond);
    animation-delay: -3s;
}

.card-icon {
    font-size: 2.5rem;
}

.card-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.card-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

/* Services */
.services, .how-it-works, .faq-section {
    padding: 6rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: var(--bg-surface-light);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.gold { border-top: 4px solid var(--gold); }
.pricing-card.diamond { border-top: 4px solid var(--diamond); }
.pricing-card.valhallan { border-top: 4px solid var(--valhallan); }

.rank-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.rank-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.rank-img-lg {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.price span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.popular-badge {
    position: absolute;
    top: 2rem;
    right: -2.5rem;
    background: var(--primary);
    color: white;
    padding: 0.3rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.pricing-card.popular {
    transform: scale(1.05);
    background: var(--bg-surface-light);
    border-color: rgba(138, 43, 226, 0.3);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.card-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary-glow);
    filter: blur(50px);
    border-radius: 50%;
    z-index: -1;
}

.monochrome-chrome {
    background: linear-gradient(135deg, #151515 0%, #000000 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.05) !important;
}

.monochrome-chrome:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 30px rgba(255, 255, 255, 0.1) !important;
}

.monochrome-chrome .rank-icon img {
    filter: grayscale(1) brightness(1.1) contrast(1.1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.4)) !important;
}

.monochrome-chrome h3 {
    background: linear-gradient(135deg, #ffffff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.monochrome-chrome .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
    font-weight: 800 !important;
}

.monochrome-chrome .btn-primary:hover {
    background: #ffffff !important;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4) !important;
}

/* Proof Section */
.proof-section {
    padding: 6rem 5%;
    position: relative;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-card {
    background: rgba(16, 15, 26, 0.8);
    border: var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.proof-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
    border-color: var(--primary-light);
}

.proof-image {
    height: 250px;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proof-img-src {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the card box */
    background: #080710;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.proof-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 43, 226, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.proof-card:hover .proof-zoom-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2.5rem;
    color: white;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.proof-card:hover .zoom-icon {
    transform: scale(1);
}

.proof-details {
    padding: 1.5rem;
    text-align: center;
    background: var(--bg-surface);
}

.proof-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.proof-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Modal Styling */
#imageModal .modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    max-width: 95vw !important;
    max-height: 95vh !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    transform: scale(0.9) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.modal-overlay.active #imageModal .modal-content {
    transform: scale(1) !important;
}

.modal-image {
    max-width: 95vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
}

#imageModal .close-modal {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    z-index: 2005;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* Vouches Section */
.vouches-section {
    padding: 6rem 5%;
    background: var(--bg-main);
}

.vouches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.vouch-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.vouch-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(138, 43, 226, 0.3);
}

.vouch-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vouch-avatar {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

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

.vouch-info {
    flex: 1;
}

.vouch-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.vouch-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vouch-rating {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.vouch-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
}

.leave-vouch {
    max-width: 300px;
    margin: 0 auto;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question h3 {
    font-size: 1.1rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

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

.faq-item.active {
    border-color: rgba(138, 43, 226, 0.3);
    background: var(--bg-surface-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    padding-bottom: 1.5rem;
}

/* Footer */
footer {
    background: var(--bg-surface);
    border-top: var(--glass-border);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.payment-methods {
    margin-top: 1.5rem;
}

.payment-methods p {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-top: 0 !important;
    margin-bottom: 0.8rem !important;
}

.payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    height: 22px;
    width: auto;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(1) brightness(0.8);
}

.payment-icon:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    transform: translateY(-2px);
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Toss Page */
.tos-page {
    padding: 8rem 5% 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.tos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tos-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.tos-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.tos-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tos-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    border-left: 3px solid var(--primary);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.tos-card:hover {
    background: var(--bg-surface-light);
    transform: translateX(5px);
}

.tos-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.tos-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tos-card ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tos-card ul li {
    margin-bottom: 0.3rem;
}

.tos-confirmation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid var(--diamond);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Auth Nav Buttons */
.nav-auth {
    display: flex;
    gap: 0;
    align-items: center;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background: var(--bg-surface);
    border: var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    color: white;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.auth-switch {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Discord Integration */
.btn-discord {
    background: #5865F2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 0.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.auth-divider span {
    background: var(--bg-surface);
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.discord-connected {
    background: rgba(88, 101, 242, 0.1) !important;
    border: 1px solid #5865F2 !important;
    color: #5865F2 !important;
    pointer-events: none;
}

.discord-connected::before {
    content: '✓ ';
}

/* Live Support Widget */
.live-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 15px var(--primary-glow);
    z-index: 1000;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    width: 44px;
    height: 44px;
}

.live-support::before {
    content: '💬';
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.live-support:hover {
    width: auto;
    padding-left: 44px;
    padding-right: 15px;
    justify-content: flex-start;
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.6), 0 0 20px var(--primary-glow);
}

.support-icon {
    display: none; /* Removed in favor of pseudo-element */
}

.support-text {
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    visibility: hidden;
    margin-left: 5px;
}

.live-support:hover .support-text {
    opacity: 1;
    visibility: visible;
}

.live-support:hover {
    max-width: 250px;
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.6), 0 0 20px var(--primary-glow);
}

.live-support:hover .support-text {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.8; transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Discord Button Layout */
.btn-discord {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-discord-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-content {
        margin-bottom: 4rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge-container {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-visual {
        width: 100%;
        height: 400px;
    }

    .valhallan-card { right: 5%; top: 10%; }
    .diamond-card { left: 5%; bottom: 10%; }
    
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
        /* Note: For a fully functional mobile layout, you would add a hamburger menu icon here via HTML/JS */
    }

    .logo {
        height: 38px;
    }

    .hero {
        padding-top: 6rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services, .how-it-works, .faq-section, .proof-section, .vouches-section, .tos-page {
        padding: 4rem 5%;
    }

    .pricing-grid, .proof-grid, .vouches-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .floating-card {
        padding: 1rem;
        gap: 0.5rem;
    }

    .card-icon, .rank-img {
        font-size: 1.8rem;
    }
    .rank-img { height: 35px; }

    .card-info h4 { font-size: 0.85rem; }
    .card-info p { font-size: 0.7rem; }

    .hero-banner, .floating-card {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        margin: 0 auto;
    }

    .live-support {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }

    .hero-logo {
        height: 35px;
    }

    .nav-auth {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.modal-content {
    background: var(--bg-surface);
    border: var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    max-width: 500px;
    width: 90%;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}

.close-modal:hover {
    opacity: 1;
}

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

/* Dashboard & Admin Components */
.dashboard-container {
    max-width: 1200px;
    margin: 100px auto 4rem;
    padding: 0 5%;
}

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

.dashboard-welcome {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dashboard-logo {
    height: 64px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.dashboard-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.order-count {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Discord Linking Card */
.discord-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #5865F2;
    background: linear-gradient(90deg, rgba(88, 101, 242, 0.1) 0%, transparent 100%);
}

.discord-link-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discord-icon {
    width: 48px;
    height: 48px;
    background: #5865F2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

/* Orders Table */
.orders-table-wrapper {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.orders-table th {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.orders-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.order-id {
    font-family: monospace;
    color: var(--primary-light);
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid;
}

.date-cell {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Admin Specific */
.admin-login-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.admin-login-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.admin-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    margin-bottom: 0.3rem;
}

.admin-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.admin-badge {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 1rem;
}

.status-select {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.payment-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.payment-badge.paid { color: #10b981; }
.payment-badge.unpaid { color: #ef4444; }

/* Empty States */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .dashboard-header { flex-direction: column; gap: 1.5rem; text-align: center; }
    .dashboard-welcome { flex-direction: column; }
    .discord-card { flex-direction: column; text-align: center; gap: 1.5rem; }
}

.search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 12px;
}
.search-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}

.payment-badge.pending-verification { background: #f59e0b22; color: #f59e0b; border: 1px solid #f59e0b44; }

/* Payment Modal Styles */
.payment-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wallet-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.wallet-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--secondary-glow);
}

.wallet-option.active {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.wallet-option img {
    width: 32px;
    height: 32px;
}

.wallet-option strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.wallet-addr {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
    word-break: break-all;
    max-width: 200px;
}

.btn-copy {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    opacity: 0.5;
    transition: opacity 0.2s;
    margin-left: auto;
}

.btn-copy:hover {
    opacity: 1;
}

/* Navbar Auth Positioning */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 3%; /* Shift left from the right edge */
}

@media (max-width: 992px) {
    .nav-auth { margin-right: 0; }
}

/* Premium Admin Panel UI */
.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.admin-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-gradient);
    opacity: 0.7;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    margin-bottom: 0.5rem;
}

.admin-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Glassmorphism for Main Cards */
.dashboard-card {
    background: rgba(15, 12, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.dashboard-section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-section-header h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--secondary);
    border-radius: 4px;
}

/* Improved Admin Tables */
.orders-table th {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
}

.orders-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.status-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

.status-select:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.status-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-select option {
    background-color: #fff; /* Light background for the menu */
    color: #000;            /* Dark text for the menu */
}

/* Admin Login Overlay */
.admin-login-overlay {
    background: radial-gradient(circle at center, #1a1a2e 0%, #06050b 100%);
}

.admin-login-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}