        :root {
            --primary: #774ee7;
            --primary-dark: #6435e3;
            --secondary: #00ffcc;
            --dark: #0a0a12;
            --darker: #050508;
            --light: #f0f0f5;
            --gray: #1a1a24;
            --success: #00cc66;
            --danger: #ff3366;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }

        /* Particle Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

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

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

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

        /* Header */
        header {
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 100;
            animation: fadeInDown 0.8s ease-out;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo img {
            height: 40px;
            filter: drop-shadow(0 0 10px var(--primary));
        }

        .logo h1 {
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--primary), var(--primary));
			filter: drop-shadow(0 0 10px var(--primary));
			margin-left: 50px;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }

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

        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        nav a:hover {
            color: var(--secondary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(105, 51, 255, 0.4);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 20px rgba(105, 51, 255, 0.6);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--primary);
        }

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

        .btn-secondary {
            background: var(--secondary);
            color: var(--dark);
            box-shadow: 0 4px 15px rgba(0, 255, 204, 0.4);
        }

        .btn-secondary:hover {
            background: #00e6b8;
            box-shadow: 0 6px 20px rgba(0, 255, 204, 0.6);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

		.hero {
			position: relative;
			min-height: 100vh;
			display: flex;
			align-items: center;
			overflow: hidden;
		}

        .hero-content {
            max-width: 600px;
            z-index: 10;
            animation: fadeInLeft 0.8s ease-out;
        }

        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h2 span {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            color: rgba(240, 240, 245, 0.8);
        }

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

        .hero-image {
            position: absolute;
            right: 5%;
            max-width: 50%;
            height: auto;
            z-index: 5;
            animation: float 6s ease-in-out infinite;
            filter: drop-shadow(0 20px 30px rgba(105, 51, 255, 0.3));
        }

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

        .stat-item {
            animation: fadeInUp 0.8s ease-out;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1rem;
            color: rgba(240, 240, 245, 0.6);
        }

        /* Features Section */
        .section {
            padding: 6rem 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: rgba(240, 240, 245, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
        }

		.features-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr); /* 4 Spalten pro Zeile */
			gap: 2rem;
		}

		.feature-card {
			background: var(--gray);
			border-radius: 15px;
			padding: 2rem;
			transition: all 0.3s ease;
			border: 1px solid rgba(105, 51, 255, 0.1);
			position: relative;
			overflow: hidden;
			z-index: 1;
		}


        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(105, 51, 255, 0.3);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(105, 51, 255, 0.1) 0%, rgba(0, 255, 204, 0.05) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 10px 20px rgba(105, 51, 255, 0.3);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: rgba(240, 240, 245, 0.7);
            line-height: 1.6;
        }

        /* Download Section */
        .download-section {
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            border-radius: 20px;
            padding: 4rem;
            text-align: center;
            margin: 0 auto;
            max-width: 900px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(105, 51, 255, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .download-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(105, 51, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }

        .download-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .download-section p {
            max-width: 600px;
            margin: 0 auto 2.5rem;
            color: rgba(240, 240, 245, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .download-btn {
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
        }

        /* Invite Section */
        .invite-section {
            background: var(--gray);
            border-radius: 15px;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            border: 1px solid rgba(105, 51, 255, 0.2);
        }

        .invite-section h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .invite-section p {
            color: rgba(240, 240, 245, 0.7);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

		.invite-section span{
			display: block !important;
			color: red;
			padding: 10px;
			border-radius: 10px;
			border: 1px solid red;
			width: 100%;
			margin-bottom: 50px;
		}

        .invite-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .invite-form input {
            flex: 1;
            padding: 0.8rem 1.5rem;
            border-radius: 50px 0 0 50px;
            border: none;
            background: var(--dark);
            color: var(--light);
            font-size: 1rem;
            outline: none;
            border: 1px solid rgba(105, 51, 255, 0.5);
            border-right: none;
        }

        .invite-form button {
            border-radius: 0 50px 50px 0;
            border-left: none;
        }

        /* Footer */
        footer {
            background: var(--darker);
            padding: 0rem 5% 2rem;
            border-top: 1px solid rgba(105, 51, 255, 0.2);
        }

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

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

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

        .footer-column li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            color: rgba(240, 240, 245, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

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

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(240, 240, 245, 0.1);
            color: rgba(240, 240, 245, 0.5);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

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

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

        /* Responsive */
        @media (max-width: 992px) {
            .hero-image {
                opacity: 0.3;
                right: -20%;
            }
        }

        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--darker);
                padding: 2rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                border-bottom: 1px solid rgba(105, 51, 255, 0.2);
            }

            nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h2 {
                font-size: 2.5rem;
            }

            .hero-image {
                display: none;
            }

            .stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .download-section {
                padding: 3rem 1.5rem;
            }

            .invite-form {
                flex-direction: column;
                gap: 1rem;
            }

            .invite-form input {
                border-radius: 50px;
                border-right: 1px solid rgba(105, 51, 255, 0.5);
            }

            .invite-form button {
                border-radius: 50px;
            }
        }

        /* Tooltip */
        .tooltip {
            position: relative;
            display: inline-block;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            width: 200px;
            background-color: var(--gray);
            color: var(--light);
            text-align: center;
            border-radius: 6px;
            padding: 0.5rem;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.9rem;
            border: 1px solid rgba(105, 51, 255, 0.3);
        }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: var(--gray) transparent transparent transparent;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 8, 0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: var(--dark);
            border-radius: 15px;
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            border: 1px solid rgba(105, 51, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            animation: scaleIn 0.3s ease;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

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

        .modal h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .modal p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.9);
            }
            to {
                transform: scale(1);
            }
        }



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

.pricing-card {
    background: var(--gray);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(105, 51, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(105, 51, 255, 0.3);
	transition: 0.3s all;
}

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


.pricing-card.popular {
    border: 1px solid var(--primary);
    transform: translateY(0);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(105, 51, 255, 0.1) 0%, rgba(0, 255, 204, 0.05) 100%);
    z-index: -1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 1.5rem;
    margin-top: 0.3rem;
    margin-right: 0.2rem;
    color: var(--light);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price .period {
    align-self: flex-end;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(240, 240, 245, 0.6);
}

.popular-tag {
    position: absolute;
    top: -0.5rem;
    right: -4rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    transform-origin: center;
    width: 150px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(105, 51, 255, 0.3);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(240, 240, 245, 0.8);
}

.features-list i {
    font-size: 1.1rem;
}

.features-list .fa-check-circle {
    color: var(--success);
}

.features-list .fa-times-circle {
    color: var(--danger);
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
    font-size: 1.1rem;
}

.payment-methods {
    text-align: center;
    margin-top: 3rem;
}

.payment-methods p {
    color: rgba(240, 240, 245, 0.6);
    margin-bottom: 1rem;
}

.payment-methods .methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 2rem;
    color: rgba(240, 240, 245, 0.7);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: translateY(0);
    }
}

.btn a{
	text-decoration: none;
	color: white;
}




/* Hero Carousel */
.hero-carousel {
    position: absolute !important;
    right: 5% !important;
    max-width: 50% !important;
    height: auto !important;
    z-index: 5 !important;
    animation: float 6s ease-in-out infinite !important;
    filter: drop-shadow(0 20px 30px rgba(105, 51, 255, 0.3)) !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    border: 2px solid rgba(105, 51, 255, 0.3) !important;
}

.carousel-container {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
    overflow: hidden !important;
}

.carousel-slide {

    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease-in-out !important;
}

.carousel-slide.active {
    opacity: 1 !important;
}

.carousel-slide.active img{
    opacity: 1 !important;
}

.carousel-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.carousel-controls {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px !important;
    z-index: 10 !important;
}

.carousel-prev, .carousel-next {
    background: rgba(10, 10, 18, 0.7) !important;
    border: none !important;
    color: var(--light) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--primary) !important;
    transform: scale(1.1) !important;
}

.carousel-dots {
    display: flex !important;
    gap: 10px !important;
}

.dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(240, 240, 245, 0.5) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.dot.active {
    background: var(--primary) !important;
    transform: scale(1.2) !important;
}

@media (max-width: 992px) {
    .hero-carousel {
        opacity: 0.3 !important;
        right: -20% !important;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        display: none !important;
    }
}