/* ============================================
   NOGCrypto - Premium Design System
   Einheitlich, Eckig, Beeindruckend
   ============================================ */

:root {
    /* Premium Color Palette */
    --primary: #00ffa3;
    --primary-dim: #00cc82;
    --primary-glow: rgba(0, 255, 163, 0.3);
    --primary-subtle: rgba(0, 255, 163, 0.08);
    --secondary: #7c3aed;
    --secondary-glow: rgba(124, 58, 237, 0.3);
    --accent: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.25);

    /* Dark Theme - Refined */
    --bg-dark: #050508;
    --bg-card: rgba(12, 12, 18, 0.98);
    --bg-elevated: rgba(20, 20, 28, 0.98);
    --bg-input: rgba(8, 8, 12, 0.9);
    --border-color: rgba(0, 255, 163, 0.12);
    --border-strong: rgba(0, 255, 163, 0.25);

    /* Text - High Contrast */
    --text-primary: #ffffff;
    --text-secondary: #d0d0d8;
    --text-muted: #8888a0;
    --text-accent: var(--primary);

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #00ffa3 0%, #00d4ff 50%, #7c3aed 100%);
    --gradient-button: linear-gradient(90deg, #00ffa3 0%, #00e094 100%);
    --gradient-card: linear-gradient(180deg, rgba(0, 255, 163, 0.03) 0%, transparent 100%);
    --gradient-glow: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius - Square Design */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --radius-full: 0px;

    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px var(--primary-glow);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);

    /* Transitions - Keine Hover-Effekte */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
}

/* ============================================
   Animated Background Orbs
   ============================================ */

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -80px) scale(1.1);
    }

    50% {
        transform: translate(-30px, -150px) scale(0.95);
    }

    75% {
        transform: translate(80px, -60px) scale(1.05);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-70px, 60px) scale(0.9);
    }

    50% {
        transform: translate(40px, 120px) scale(1.1);
    }

    75% {
        transform: translate(-50px, 40px) scale(1);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -50px) scale(1.15);
    }

    66% {
        transform: translate(-60px, 80px) scale(0.9);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

/* ============================================
   Layout & Structure
   ============================================ */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
    padding-bottom: var(--space-3xl);
}

.content-wrapper {
    display: flex;
    gap: var(--space-xl);
    width: 100%;
    margin-top: var(--space-xl);
    align-items: flex-start;
}

.content-area {
    flex: 1;
    min-width: 0;
}

/* Sidebars */
.sidebar-left,
.sidebar-right {
    width: 170px;
    flex-shrink: 0;
}

.sidebar-left {
    display: none;
    /* Hidden on mobile/tablet default */
}

@media (min-width: 1200px) {
    .sidebar-left {
        display: block;
    }
}

@media (max-width: 960px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar-left,
    .sidebar-right {
        width: 100%;
        margin-top: var(--space-xl);
    }
}

@media (max-width: 960px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar-right {
        width: 100%;
        margin-top: var(--space-xl);
    }
}

/* ============================================
   Base Styles
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Container */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: var(--bg-dark);
}

/* Animated Orb 1 - Primary Green */
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.15) 0%, rgba(0, 255, 163, 0.05) 40%, transparent 70%);
    z-index: -1;
    animation: floatOrb1 25s ease-in-out infinite, pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

/* Additional Orbs via pseudo-elements on main-container */
.bg-orb-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb-container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.04) 40%, transparent 70%);
    animation: floatOrb2 30s ease-in-out infinite, pulseGlow 10s ease-in-out infinite 2s;
}

.bg-orb-container::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0.02) 40%, transparent 70%);
    animation: floatOrb3 35s ease-in-out infinite, pulseGlow 12s ease-in-out infinite 4s;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(0, 255, 163, 0.15);
    }
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Layout
   ============================================ */

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl);
    animation: fadeInUp 0.6s ease-out;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .layout-grid {
        grid-template-columns: 280px 1fr 280px;
    }
}

.content-area {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* ============================================
   Cards
   ============================================ */

.faucet-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    position: relative;
    overflow: hidden;

    /* Centered Content */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    /* Premium Glow Effect */
    box-shadow:
        var(--shadow-card),
        0 0 80px rgba(0, 255, 163, 0.06);
}

/* Top accent line */
.faucet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

/* Inner subtle gradient */
.faucet-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

/* ============================================
   Typography
   ============================================ */

h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: var(--space-sm);
    background: linear-gradient(180deg, #fff 30%, #a0a0b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2,
h3 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Form Elements
   ============================================ */

.input-group {
    width: 100%;
    max-width: 400px;
    margin-bottom: var(--space-lg);
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.form-control {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23a0a0b0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* ============================================
   Buttons
   ============================================ */

.btn-claim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-2xl);
    min-width: 220px;
    background: var(--gradient-button);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    color: #050508;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    /* Permanent Premium Glow */
    box-shadow:
        0 0 30px rgba(0, 255, 163, 0.4),
        0 0 60px rgba(0, 255, 163, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: glow 3s ease-in-out infinite;
}

/* Static premium overlay */
.btn-claim::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.btn-claim:active {
    transform: translateY(0);
}

.btn-claim:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--text-muted);
    transform: none;
    box-shadow: none;
}

/* ============================================
   Status Indicators
   ============================================ */

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
    transition: all var(--transition-slow);
}

.status-dot.active {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    animation: pulse 2s infinite;
}

/* ============================================
   Alerts
   ============================================ */

.alert {
    width: 100%;
    max-width: 400px;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease;
    margin-bottom: var(--space-md);
}

.alert-success {
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.alert-error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
}

/* ============================================
   Ad Spaces
   ============================================ */

.ad-space {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: border-color var(--transition-normal);
    overflow: hidden;
}

/* Removed ad-space:hover - keine Hover-Effekte */

.ad-header {
    height: 90px;
    max-width: 728px;
    margin: 0 auto var(--space-xl);
}

.ad-sidebar {
    height: 250px;
    margin-bottom: var(--space-lg);
}

.ad-footer {
    height: 90px;
    max-width: 728px;
    margin: var(--space-xl) auto 0;
}

/* ============================================
   Slider Verification
   ============================================ */

.slider-container {
    width: 100%;
    max-width: 400px;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    margin: var(--space-lg) 0;
    user-select: none;
}

.slider-track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.slider-fill {
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
    width: 0%;
    transition: width 0.1s ease-out;
}

.slider-thumb {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1.2rem;
    cursor: grab;
    box-shadow: var(--shadow-md);
    transition: background var(--transition-fast), transform var(--transition-fast);
    z-index: 10;
}

.slider-thumb:active {
    cursor: grabbing;
    transform: scale(0.95);
    background: var(--primary);
}

/* ============================================
   Payment Proof Table
   ============================================ */

.proof-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: blur(20px);
}

.proof-container h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.proof-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 var(--space-xs);
}

.proof-table th {
    text-align: left;
    padding: var(--space-md);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
}

.proof-table td {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.proof-table tr td:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.proof-table tr td:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-align: right;
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   Referral Box
   ============================================ */

.ref-box {
    width: 100%;
    margin-top: 0;
    padding: var(--space-2xl) var(--space-3xl);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-strong);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Premium Glow - same as faucet-card */
    box-shadow:
        var(--shadow-card),
        0 0 80px rgba(124, 58, 237, 0.06);
}

.ref-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.ref-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ref-link {
    display: block;
    margin-top: var(--space-md);
    padding: var(--space-lg);
    background: rgba(0, 255, 163, 0.08);
    border: 2px solid var(--border-strong);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-family: 'Outfit', monospace;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    word-break: break-all;
    letter-spacing: 0.5px;
}

/* ============================================
   Currency Selection Grid
   ============================================ */
.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-md);
    width: 100%;
    margin-bottom: var(--space-xl);
}

.currency-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.currency-btn.active {
    background: rgba(0, 255, 163, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.currency-btn:focus {
    outline: none;
}

/* ============================================
   Utility Classes
   ============================================ */

.hidden {
    display: none !important;
}

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

.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.mt-1 {
    margin-top: var(--space-sm);
}

.mt-2 {
    margin-top: var(--space-md);
}

.mt-3 {
    margin-top: var(--space-lg);
}

.mt-4 {
    margin-top: var(--space-xl);
}

.mb-1 {
    margin-bottom: var(--space-sm);
}

.mb-2 {
    margin-bottom: var(--space-md);
}

.mb-3 {
    margin-bottom: var(--space-lg);
}

.mb-4 {
    margin-bottom: var(--space-xl);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .navbar {
        padding: var(--space-md);
    }

    .main-container {
        padding: var(--space-md);
    }

    .faucet-card {
        padding: var(--space-xl);
    }

    h1 {
        font-size: 1.5rem;
    }

    .btn-claim {
        width: 100%;
        max-width: 300px;
    }

    .ad-header,
    .ad-footer {
        height: 60px;
    }
}

/* ============================================
   Scrollbar
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}