/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: #0a0e1a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -300px;
    right: -300px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Ensure content is above background */
header,
main,
footer {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset;
}

.main-nav {
    padding: 0;
}

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

/* Brand/Logo */
.nav-brand {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.brand-link:hover {
    transform: translateY(-1px);
}

.brand-icon {
    font-size: 1.75rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.9));
    }
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
}

.nav-link:active {
    transform: scale(0.98);
}

/* Dropdown Toggle */
.nav-dropdown-toggle {
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown Menu */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 280px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(59, 130, 246, 0.15) inset,
        0 0 80px rgba(59, 130, 246, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.6), 
        #3b82f6, 
        #60a5fa, 
        #3b82f6, 
        rgba(59, 130, 246, 0.6), 
        transparent
    );
    opacity: 0.9;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    color: #e5e7eb;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa, #93c5fd);
    transform: scaleY(0);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    transform: translateX(4px);
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.item-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    filter: grayscale(0.3);
    transition: filter 0.2s ease;
}

.dropdown-item:hover .item-icon {
    filter: grayscale(0);
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
}

.item-title {
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.3;
    color: inherit;
}

.item-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.dropdown-item:hover .item-desc {
    color: #cbd5e1;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.875rem 1rem;
        gap: 1rem;
    }
    
    .brand-text {
        font-size: 1.25rem;
    }
    
    .brand-icon {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .nav-dropdown-menu {
        min-width: 240px;
        left: auto;
        right: 0;
    }
    
    .dropdown-item {
        padding: 0.75rem 0.875rem;
    }
    
    .item-title {
        font-size: 0.875rem;
    }
    
    .item-desc {
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown-menu {
        right: 0;
        left: auto;
    }
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.4) 0%, 
        rgba(15, 23, 42, 0.6) 50%,
        rgba(30, 41, 59, 0.4) 100%
    );
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset,
        0 0 100px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    animation: heroFadeIn 0.8s ease-out;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.6), 
        #3b82f6, 
        #60a5fa, 
        #93c5fd,
        #60a5fa,
        #3b82f6, 
        rgba(59, 130, 246, 0.6), 
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    opacity: 0.8;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotateSlow 20s linear infinite;
    pointer-events: none;
}

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

.hero h2 {
    font-size: 2.75rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 30%, #a78bfa 60%, #3b82f6 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-weight: 400;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-highlight {
    color: #60a5fa;
    font-weight: 600;
    font-size: 1.05em;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    position: relative;
    padding: 0 0.25rem;
}

/* Reseller Grid */
.reseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding: 0.5rem 0;
}

@media (min-width: 1200px) {
    .reseller-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
}

.reseller-card {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.7) 0%, 
        rgba(15, 23, 42, 0.85) 100%
    );
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 28px;
    padding: 2.5rem;
    backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(59, 130, 246, 0.15) inset,
        0 0 120px rgba(59, 130, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.6s ease-out backwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reseller-card:nth-child(1) { animation-delay: 0.1s; }
.reseller-card:nth-child(2) { animation-delay: 0.2s; }
.reseller-card:nth-child(3) { animation-delay: 0.3s; }
.reseller-card:nth-child(4) { animation-delay: 0.4s; }
.reseller-card:nth-child(5) { animation-delay: 0.5s; }
.reseller-card:nth-child(6) { animation-delay: 0.6s; }

.reseller-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #3b82f6, 
        #60a5fa, 
        #93c5fd,
        #60a5fa,
        #3b82f6, 
        transparent
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: shimmer 3s linear infinite;
}

.reseller-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.reseller-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(59, 130, 246, 0.4) inset,
        0 0 120px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(96, 165, 250, 0.6);
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.75) 0%, 
        rgba(15, 23, 42, 0.95) 100%
    );
}

.reseller-card:hover::before {
    opacity: 1;
}

.reseller-card:hover::after {
    opacity: 1;
}

.reseller-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: #60a5fa;
    margin-bottom: 1.25rem;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #a78bfa 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    line-height: 1.2;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    flex-shrink: 0;
    animation: verifiedPulse 2s ease-in-out infinite;
}

@keyframes verifiedPulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6), 0 0 0 4px rgba(16, 185, 129, 0.1);
    }
}

.reseller-card .description {
    color: #cbd5e1;
    margin-bottom: 1.75rem;
    line-height: 1.75;
    font-size: 1.0625rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services {
    margin: 1.5rem 0;
    padding: 1.75rem;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.5) 0%, 
        rgba(30, 41, 59, 0.4) 100%
    );
    backdrop-filter: blur(15px) saturate(150%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.reseller-card:hover .services::before {
    left: 100%;
}

.reseller-card:hover .services {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(59, 130, 246, 0.25);
}

.services h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
    font-weight: 700;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services h4::before {
    content: '⚡';
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}

.service-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 0;
    padding: 0;
}

.service-badge {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.6) 0%, 
        rgba(37, 99, 235, 0.5) 100%
    );
    color: #e0f2fe;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 
        0 2px 8px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
}

.service-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
    transition: left 0.5s;
}

.service-badge:hover::before {
    left: 100%;
}

.service-badge:hover {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.7) 0%, 
        rgba(59, 130, 246, 0.6) 100%
    );
    border-color: rgba(96, 165, 250, 0.7);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 20px rgba(59, 130, 246, 0.3);
}

.reseller-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    flex-wrap: wrap;
    position: relative;
}

.reseller-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.4), 
        rgba(96, 165, 250, 0.6),
        rgba(59, 130, 246, 0.4), 
        transparent
    );
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.2) inset;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.5),
        0 0 0 1px rgba(59, 130, 246, 0.3) inset,
        0 0 40px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: linear-gradient(135deg, #475569 0%, #334155 50%, #1e293b 100%);
    color: white;
    box-shadow: 
        0 4px 16px rgba(71, 85, 105, 0.3),
        0 0 0 1px rgba(71, 85, 105, 0.2) inset;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #64748b 0%, #475569 50%, #334155 100%);
    box-shadow: 
        0 8px 24px rgba(71, 85, 105, 0.4),
        0 0 0 1px rgba(71, 85, 105, 0.3) inset;
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.btn-discord {
    background: #5865F2;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-discord .icon {
    font-size: 1.25rem;
}

/* Forms */
.register-form {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3), 0 0 0 1px rgba(59, 130, 246, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.register-form h2 {
    color: #60a5fa;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #cbd5e1;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="password"],
.form-group input[type="file"],
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #334155;
    border-radius: 8px;
    font-size: 1rem;
    color: #e5e7eb;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(96, 165, 250, 0.5);
    background: rgba(15, 23, 42, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.checkbox-label:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
    flex-shrink: 0;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.alert-success {
    background: #064e3b;
    color: #6ee7b7;
    border-color: #059669;
}

.alert-error {
    background: #7f1d1d;
    color: #fca5a5;
    border-color: #dc2626;
}

.alert-success h3 {
    margin-bottom: 0.5rem;
    color: #34d399;
}

/* FAQ Page */
.faq-page {
    background: transparent;
    color: white;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.faq-hero {
    text-align: center;
    padding: 3rem 0 2.5rem;
    position: relative;
    z-index: 1;
}

.faq-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 30%, #a78bfa 60%, #3b82f6 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    text-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
}

.faq-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    font-weight: 400;
}

.faq-content {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.6) 0%, 
        rgba(15, 23, 42, 0.8) 100%
    );
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2.25rem;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.6s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #3b82f6, 
        #60a5fa, 
        #93c5fd,
        #60a5fa,
        #3b82f6, 
        transparent
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: shimmer 3s linear infinite;
}

.faq-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(59, 130, 246, 0.3) inset,
        0 0 80px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.5);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-image {
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #60a5fa;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.faq-item p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.faq-item ul {
    list-style: none;
    padding-left: 0;
}

.faq-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #cbd5e1;
}

.faq-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #60a5fa;
}

.faq-cta {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
    font-weight: 600;
    background: linear-gradient(135deg, #e5e7eb 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content Pages */
.content-page {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.6) 0%, 
        rgba(15, 23, 42, 0.8) 100%
    );
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset,
        0 0 100px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    animation: heroFadeIn 0.8s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

.content-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.6), 
        #3b82f6, 
        #60a5fa, 
        #93c5fd,
        #60a5fa,
        #3b82f6, 
        rgba(59, 130, 246, 0.6), 
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    opacity: 0.8;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 30%, #a78bfa 60%, #3b82f6 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    position: relative;
    z-index: 1;
}

.content-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #60a5fa;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.content-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #93c5fd;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
    position: relative;
    z-index: 1;
}

.content-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.content-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.content-page strong {
    color: #e5e7eb;
    font-weight: 600;
}

.content-page a {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.content-page a:hover {
    color: #93c5fd;
    border-bottom-color: #93c5fd;
}

/* Footer */
footer {
    background: transparent;
    color: #94a3b8;
    text-align: center;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.3), 
        rgba(96, 165, 250, 0.5),
        rgba(59, 130, 246, 0.3), 
        transparent
    );
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
}

.footer-links a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.footer-separator {
    color: rgba(71, 85, 105, 0.5);
    user-select: none;
}

/* No Resellers */
.no-resellers {
    text-align: center;
    padding: 3rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.no-resellers p {
    font-size: 1.125rem;
    color: #94a3b8;
}

.no-resellers a {
    color: #60a5fa;
    text-decoration: none;
}

.no-resellers a:hover {
    text-decoration: underline;
}

/* Login Container (für Login-Seiten) */
.login-container {
    background: #1e293b;
    border: 1px solid #334155;
}

.login-container h2 {
    color: #60a5fa;
}

/* Admin Panel Styles */
.admin-header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1.5rem 0;
    margin-bottom: 0;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header h1 {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.admin-table {
    background: #1e293b;
    border: 1px solid #334155;
}

.admin-table th {
    background: #0f172a;
    color: #cbd5e1;
    border-bottom: 1px solid #334155;
}

.admin-table td {
    color: #cbd5e1;
    border-bottom: 1px solid #334155;
}

.status-info {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.status-info strong {
    color: #e5e7eb;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.status-verified {
    background: #064e3b;
    color: #6ee7b7;
    border: 1px solid #059669;
}

.status-pending {
    background: #78350f;
    color: #fcd34d;
    border: 1px solid #f59e0b;
}

.panel-header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1.5rem 0;
    margin-bottom: 0;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset;
    position: sticky;
    top: 0;
    z-index: 100;
}

.panel-header h1 {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.panel-header .container > div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.panel-header .container > div > span {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 1.1rem;
}

.panel-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    border-radius: 12px;
    border: 1px solid rgba(51, 65, 85, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.panel-tab {
    padding: 0.875rem 1.75rem;
    background: rgba(51, 65, 85, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px 8px 0 0;
    color: #94a3b8;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.panel-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.panel-tab:hover::before {
    left: 100%;
}

.panel-tab:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    transform: translateY(-2px);
}

.panel-tab.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(96, 165, 250, 0.15) 100%);
    border-bottom-color: #3b82f6;
    color: #60a5fa;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.panel-tab.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, #93c5fd, #60a5fa, #3b82f6, transparent);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
}

.certificate-preview a {
    color: #60a5fa;
}

.certificate-preview a:hover {
    color: #93c5fd;
}

/* Responsive */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        justify-content: center;
    }

    .hero {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .hero h2 {
        font-size: 1.875rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-text {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .hero-highlight {
        font-size: 1.05em;
    }

    .reseller-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .faq-hero h1 {
        font-size: 2rem;
    }

    .provider-tabs {
        flex-wrap: wrap;
    }

    .provider-tab {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }

    .nav-dropdown-menu {
        min-width: 160px;
    }

    .nav-dropdown-menu a {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
}

/* Provider Tabs */
.provider-tabs-container {
    margin-top: 2rem;
}

.provider-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding: 0.5rem;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.provider-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.5), 
        #3b82f6, 
        rgba(59, 130, 246, 0.5), 
        transparent
    );
    opacity: 0.6;
}

.provider-tab {
    padding: 1rem 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    color: #94a3b8;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.provider-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.provider-tab:hover::before {
    left: 100%;
}

.provider-tab:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    transform: translateY(-2px);
}

.provider-tab.active {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.25) 0%, 
        rgba(96, 165, 250, 0.15) 100%
    );
    color: #60a5fa;
    font-weight: 600;
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.provider-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #3b82f6, 
        #60a5fa, 
        #93c5fd,
        #60a5fa,
        #3b82f6, 
        transparent
    );
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.6);
}

.provider-section {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.provider-section.active {
    display: block;
}

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