/* ========================================
   DUOMAPS VIP SHOP - STYLES
   Minimalistisch & Modern
   ======================================== */

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* DuoMaps Farben */
    --primary-blue: #00d4ff;
    --dark-blue: #0a1628;
    --darker-blue: #050b14;
    --white: #ffffff;
    --light-gray: #f0f0f0;
    --green-accent: #00ff88;
    
    /* VIP Farben */
    --vip-green: #00ff88;
    --vip-plus-gold: #ffc107;
    
    /* Schatten & Effekte */
    --shadow: rgba(0, 212, 255, 0.3);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.4);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.4);
    --glow-gold: 0 0 20px rgba(255, 193, 7, 0.4);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker-blue);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   SCHLICHTE HINTERGRUND-PARTIKEL
   ======================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-100px) translateX(50px);
    }
    50% {
        transform: translateY(-50px) translateX(100px);
    }
    75% {
        transform: translateY(-150px) translateX(50px);
    }
}

/* ========================================
   NAVIGATION - MINIMALISTISCH
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 11, 20, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: 0.6rem 0;
}

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

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.1);
}

.nav-link.active {
    color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.15);
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--primary-blue), #0099ff);
    color: var(--white) !important;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, #0099ff, var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: var(--darker-blue);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

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

.server-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px var(--primary-blue));
    animation: float-logo 3s ease-in-out infinite;
}

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

.glitch {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px var(--primary-blue),
        0 0 40px var(--primary-blue),
        0 0 60px var(--primary-blue);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Stats Container */
.stats-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* ========================================
   INFO BANNER (NEU FÜR REGISTRIERUNG)
   ======================================== */
.info-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: -50px auto 50px;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.info-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.info-content i {
    font-size: 2rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-content strong {
    color: var(--primary-blue);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 4rem;
}

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

.package-card {
    background: rgba(10, 22, 40, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.package-card.featured {
    border-color: var(--vip-plus-gold);
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.2);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--vip-green), #00cc70);
    color: var(--darker-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-badge.premium {
    background: linear-gradient(135deg, var(--vip-plus-gold), #ff9800);
}

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

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 30px var(--shadow);
}

.vip-card .package-icon {
    color: var(--vip-green);
    border-color: rgba(0, 255, 136, 0.3);
}

.vip-plus-card .package-icon {
    color: var(--vip-plus-gold);
    border-color: rgba(255, 193, 7, 0.3);
}

.package-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    color: var(--white);
    font-weight: 900;
}

.price-period {
    font-size: 1rem;
    color: var(--light-gray);
}

.package-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--vip-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.vip-plus-card .feature-item i {
    color: var(--vip-plus-gold);
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.feature-text span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-vip {
    background: linear-gradient(135deg, var(--vip-green), #00cc70);
    color: var(--darker-blue);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.btn-vip:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}

.btn-vip-plus {
    background: linear-gradient(135deg, var(--vip-plus-gold), #ff9800);
    color: var(--darker-blue);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.btn-vip-plus:hover {
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #0099ff);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 6rem 0;
    background: rgba(0, 212, 255, 0.02);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
}

.testimonial-name {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-rank {
    color: var(--vip-green);
    font-size: 0.85rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--vip-plus-gold);
}

.testimonial-text {
    color: var(--light-gray);
    line-height: 1.6;
    font-style: italic;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
    user-select: none;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker-blue);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--light-gray);
    margin: 0.5rem 0;
}

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

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--light-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--darker-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--green-accent));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px var(--shadow);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    float: right;
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-gray);
    cursor: pointer;
    padding: 0 1rem;
    transition: color 0.3s ease;
}

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

.modal-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.modal-title {
    color: var(--white);
    font-size: 2rem;
    margin: 0;
}

.modal-body {
    padding: 2rem;
}

.purchase-summary {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    color: var(--light-gray);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-blue);
}

.summary-item strong {
    color: var(--primary-blue);
}

.purchase-info {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: var(--light-gray);
}

.purchase-info i {
    color: var(--green-accent);
    margin-right: 0.5rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-footer .btn {
    flex: 1;
}

/* ========================================
   REGISTRIERUNGS-FORMULAR
   ======================================== */
.registration-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.registration-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.registration-info i {
    color: var(--primary-blue);
    margin-right: 8px;
    font-size: 1.1rem;
}

.registration-info strong {
    color: var(--green-accent);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 8px;
    color: var(--green-accent);
}

.form-group input[type="text"] {
    width: 100%;
    padding: 15px;
    background: rgba(10, 22, 40, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(10, 22, 40, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Rang Auswahl */
.rank-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.rank-option {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rank-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rank-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 22, 40, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
}

.rank-option label i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.rank-option label span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.rank-option label small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.rank-option:hover label {
    border-color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.rank-option.selected label,
.rank-option input[type="radio"]:checked + label {
    border-color: var(--green-accent);
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.rank-option.selected label i,
.rank-option input[type="radio"]:checked + label i {
    color: var(--green-accent);
}

/* VIP+ Rang spezielle Farbe */
.rank-option:last-child label i {
    color: var(--vip-plus-gold);
}

.rank-option:last-child.selected label i,
.rank-option:last-child input[type="radio"]:checked + label i {
    color: var(--vip-plus-gold);
}

.rank-option:last-child.selected label,
.rank-option:last-child input[type="radio"]:checked + label {
    border-color: var(--vip-plus-gold);
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

/* Formular Disclaimer */
.form-disclaimer {
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--primary-blue);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-disclaimer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-disclaimer i {
    color: var(--primary-blue);
    margin-right: 8px;
}

/* Success Modal */
.success-content {
    text-align: center;
    padding: 40px 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--green-accent), #00cc66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s ease;
}

.success-icon i {
    font-size: 3rem;
    color: #fff;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-content h2 {
    color: var(--green-accent);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.success-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.success-note {
    color: var(--primary-blue) !important;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 20px !important;
}

.success-content .btn {
    margin-top: 20px;
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--green-accent));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: bottom 0.3s ease;
    z-index: 10000;
    font-weight: 600;
}

.toast.show {
    bottom: 2rem;
}

.toast.error {
    background: linear-gradient(135deg, #ff3333, #cc0000) !important;
}

.toast.success {
    background: linear-gradient(135deg, #00ff88, #00cc66) !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 65px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 65px);
        background: rgba(5, 11, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1rem;
        border-left: 1px solid rgba(0, 212, 255, 0.2);
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 1rem;
        display: block;
    }
    
    .glitch {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .info-banner {
        margin: -30px 20px 30px;
        padding: 20px;
    }
    
    .info-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-content i {
        font-size: 1.5rem;
    }
    
    .rank-selection {
        grid-template-columns: 1fr;
    }
    
    .form-group input[type="text"] {
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
    
    .success-content {
        padding: 30px 20px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon i {
        font-size: 2rem;
    }
    
    .success-content h2 {
        font-size: 1.4rem;
    }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

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

/* ========================================
   TEXT SELECTION
   ======================================== */
::selection {
    background: var(--primary-blue);
    color: var(--white);
}

/* ========================================
   LOADING STATE
   ======================================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}
