.feature-icon i {
    font-size: 1.4rem;
}

.fas.fa-shield-virus {
    font-size: 1.4rem;
}

.fas.fa-ad {
    font-size: 1.4rem;
}

.fas.fa-shield-alt {
    font-size: 1.4rem;
}

.fas.fa-user-secret {
    font-size: 1rem;
}

.fas.fa-code-branch {
    font-size: 1.4rem;
}

:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #3b82f6;
    --text: #f8fafc;
    --text-secondary: #94a3b8;
    --card-bg: rgba(30, 41, 59, 0.5);
    --nav-bg: rgba(15, 23, 42, 0.8);
    --border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 15px 25px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
  
.nav-buttons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.nav-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.discord-btn-nav {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #000 !important;
    position: relative;
    overflow: hidden;
}

.discord-btn-nav::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0) 60%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(30deg) translate(-30%, -30%);
    }

    100% {
        transform: rotate(30deg) translate(30%, 30%);
    }
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(to bottom, #1e293b 0%, rgba(15, 23, 42, 0.3) 70%, rgba(15, 23, 42, 0) 90%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}



.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--primary), transparent);
    z-index: 1;
}

/* Features Grid */
.features-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.feature-link svg {
    transition: transform 0.3s ease;
    width: 1em;
    height: 1em;
}

.feature-link:hover svg {
    transform: translateX(3px);
}

/* Premium Rewards Card - Angepasst */
.rewards-promo {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #1e293b;
    border: none;
    display: flex;
    min-height: 280px;
    text-decoration: none !important;
}

.rewards-promo * {
    text-decoration: none !important;
}

.promo-content {
    padding: 30px;
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #3b82f6, #6366f1);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    align-self: flex-start;
}

.promo-badge svg {
    width: 0.9em;
    height: 0.9em;
}

.rewards-promo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #111;
}

.rewards-promo p {
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

.promo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(59, 130, 246, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: auto;
    border: none;
}

.promo-cta span {
    font-weight: 600;
    color: #1e40af;
}

.arrow-wrapper {
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.rewards-promo:hover .arrow-wrapper {
    transform: translateX(3px);
}

.promo-graphic {
    width: 30%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.promo-graphic svg {
    width: 3rem;
    height: 3rem;
    fill: #3b82f6;
    z-index: 2;
}

.diamond-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Apple-style Grid Section */
.apple-grid {
    padding: 0 0 120px;
    background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.7) 0%, rgba(var(--secondary-rgb), 0.7) 100%);
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Ad Platzhalter */
.ad-placeholder {
    grid-column: span 2;
    grid-row: span 2;
    background: rgba(30, 41, 59, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ad-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.ad-content {
    text-align: center;
    padding: 20px;
}

.grid-item svg,
.ad-content svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: var(--accent);
    margin-bottom: 20px;
}

.ad-content svg {
    fill: var(--text-secondary);
}

.grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.grid-item p,
.ad-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.blog-section {
    padding: 100px 0;
    background: rgba(var(--secondary-rgb), 0.7);
}


.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.coming-soon {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 80px 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--accent), #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.coming-soon p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.coming-soon-icon svg {
    width: 4rem;
    height: 4rem;
    fill: rgba(59, 130, 246, 0.1);
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
    display: block;
}

.footer-logo span {
    color: var(--accent);
}

.footer-about p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-links h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text);
    padding-left: 5px;
}

.footer-social h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-discord-btn {
    display: inline-block;
    background: #5865F2;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-discord-btn:hover {
    background: #4752C4;
}

.footer-discord-btn svg {
    width: 1em;
    height: 1em;
    fill: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-item,
    .ad-placeholder {
        grid-column: span 3;
    }

    .rewards-promo {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: calc(100% - 40px);
        background: var(--nav-bg);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border: 1px solid var(--border);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 20px;
    }

    .nav-buttons {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .rewards-promo {
        flex-direction: column;
    }

    .promo-graphic {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .main-item,
    .ad-placeholder {
        grid-column: span 2;
        grid-row: span 1;
    }

    .rewards-promo {
        grid-column: span 2;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .main-item,
    .ad-placeholder {
        grid-column: span 1;
    }

    .rewards-promo {
        grid-column: span 1;
    }

    .floating-nav {
        top: 10px;
        width: calc(100% - 20px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .coming-soon {
        padding: 60px 20px;
    }

    .coming-soon h2 {
        font-size: 2rem;
    }
}