/* ================================
   Root Variablen & Base Styles
================================== */
:root {
    --primary-color: #4A90E2;
    --text-color: #FFFFFF;
    --nav-bg: rgba(255, 255, 255, 0.1);
    --primary: #3b82f6;
    --secondary: #10b981;
    --dark: #1f2937;
    --light: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--dark);
}

/* ================================
   Navigation
================================== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--nav-bg);
}

.logo, .nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.nav-item {
    position: relative;
    z-index: 1;
}

.nav-link {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
}

.nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: rgb(48, 48, 48);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-line {
    width: 100%;
}

.nav-text {
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-link:hover .nav-text {
    transform: none;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
}

.nav-logo a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.nav-logo a:hover img {
    transform: scale(1.1);
}

.nav-logo a::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.nav-logo a:hover::before {
    transform: scale(1.2);
}

.nav-logo a span {
    position: relative;
}

.nav-logo a span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-logo a:hover span::after {
    transform: scaleX(1);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: float 20s infinite linear;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: gentleFloat 4s ease-in-out infinite;
    transform-origin: center;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* ================================
   App Download Section
================================== */
.app-button {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
}

.app-icons {
    display: flex;
    gap: 0.5rem;
}

.app-icons img {
    height: 24px;
}

/* ================================
   About Page
================================== */
.about-page {
    background: #000000;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.about-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/img/hero-bg.jpg') center/cover;
    filter: blur(3px) brightness(0.3);
    transform: scale(1.1);
    z-index: -1;
}

.about-title {
    font-size: 4rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
    animation: fadeInUp 1s ease-out;
    margin-top: 20rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
}

.about-text, .vision-section, .goals-section, .features-section {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-text.visible, .vision-section.visible, .goals-section.visible, .features-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text h2, .vision-section h2, .goals-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-text h2::after, .vision-section h2::after, .goals-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, transparent);
}

.about-text p, .vision-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

.goal-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.goal-item:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.goal-item:hover::before {
    transform: translateX(100%);
}

.goal-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.goal-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .about-text h2, .vision-section h2, .goals-section h2 {
        font-size: 2rem;
    }

    .about-text p, .vision-section p {
        font-size: 1.1rem;
    }

    .goal-item {
        padding: 1.5rem;
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   About Content Sections
================================== */
.about-content {
    padding: 12rem 0;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.about-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: -1;
}

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

.feature-text,
.about-text,
.vision-section,
.goals-section,
.features-section {
    max-width: 1500px;
    margin: 12rem auto;
    text-align: center;
}

.features-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

.features-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #fff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.feature-item:hover::before {
    transform: translateX(100%);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.feature-item:hover h3::after {
    width: 100%;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.1rem;
}

.feature-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

.feature-item:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

@media (max-width: 768px) {
    .features-section {
        padding: 4rem 1rem;
    }

    .features-section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .feature-item p {
        font-size: 1rem;
    }
}

/* ================================
   Key Facts
================================== */
.key-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.fact-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 10px;
}

.fact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.fact-item p {
    color: #888;
    font-size: 1rem;
}

/* ================================
   Goals & Features Grid
================================== */
.goals-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 6rem;
    margin-bottom: 10rem;
}

.goal-item,
.feature-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.goal-item:hover,
.feature-card:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.goal-item h3,
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
}

.goal-item p,
.feature-card p {
    color: #888;
    line-height: 2;
}

/* ================================
   Feature Icons
================================== */
.feature-icon {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    animation: float 3s ease-in-out infinite;
}

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

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    color: #fff;
}

.feature-page {
    position: relative;
    z-index: 1;
    background-color: #0a0a0a;
    color: white;
}

.feature-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.feature-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.feature-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: black;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

/* ================================
   App Page
================================== */
.app-page {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    min-height: 100vh;
    color: white;
}

.app-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.back-link {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

.app-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.app-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.app-subtitle {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 4rem;
}

.app-buttons-1 {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.app-buttons-2 {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* App Page Styles */
.app-page {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    min-height: 100vh;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #fff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* App Screenshots */
.app-screenshots {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.screenshot-slider {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot {
    position: relative;
    width: 300px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* How it Works */
.how-it-works {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

/* Community Section */
.community-section {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    min-width: 250px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Download CTA */
.download-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.download-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.app-buttons-2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .screenshot {
        width: 250px;
        height: 500px;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 0 1rem 0;
    }

    .stat-card {
        min-width: 200px;
    }
}

/* ================================
   Footer
================================== */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.contact-info p {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007bff;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* ================================
   Responsive Styles
================================== */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

    .about-content {
        padding: 8rem 0;
    }

    .about-text,
    .vision-section,
    .goals-section,
    .features-section {
        margin: 8rem auto;
    }

    .goals-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-section {
        margin: 8rem auto;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        animation: gentleFloat 4s ease-in-out infinite;
    }
    
    .app-slide {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter {
        flex-direction: column;
    }

    .feature-icon {
        font-size: 2.5rem;
        height: 60px;
    }
}

/* Neue Animationen */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Feature Boxen Layout */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

/* App Showcase Boxen */
.app-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.app-box {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.app-box img {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.app-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Kategorie Boxen */
.category-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-box {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-box.active {
    background: var(--primary);
    color: white;
}

/* Newsletter Box */
.newsletter-box {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.newsletter-box h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.newsletter-box form {
    display: flex;
    gap: 1rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .features-container,
    .app-showcase,
    .category-boxes {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .newsletter-box form {
        flex-direction: column;
    }
}

.feature-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    perspective: 1000px;
}

.slider-container {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    animation: slideInfinite 30s linear infinite;
    will-change: transform;
}

.feature-slide {
    min-width: calc(33.333% - 1.33rem);
    padding: 2.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-slide:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 2rem));
    }
}

/* Pause Animation beim Hover */
.feature-slider:hover .slider-container {
    animation-play-state: paused;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .feature-slide {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .feature-slide {
        min-width: 100%;
    }
}

/* Hintergrundanimation - viele schwebende Punkte */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes div {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #00c3ff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(3, 172, 250, 0.7);
    animation: float 8s infinite ease-in-out;
    opacity: 0.6;
}

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


/* Zufällige Startpositionen und mehr Punkte */
.floating-shapes div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 7s;
}

.floating-shapes div:nth-child(2) {
    top: 20%;
    left: 70%;
    animation-duration: 9s;
}

.floating-shapes div:nth-child(3) {
    top: 50%;
    left: 30%;
    animation-duration: 10s;
}

.floating-shapes div:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-duration: 6s;
}

.floating-shapes div:nth-child(5) {
    top: 60%;
    left: 80%;
    animation-duration: 8s;
}

.floating-shapes div:nth-child(6) {
    top: 40%;
    left: 20%;
    animation-duration: 11s;
}

.floating-shapes div:nth-child(7) {
    top: 30%;
    left: 90%;
    animation-duration: 12s;
}

.floating-shapes div:nth-child(8) {
    top: 70%;
    left: 40%;
    animation-duration: 7s;
}

.floating-shapes div:nth-child(9) {
    top: 90%;
    left: 60%;
    animation-duration: 10s;
}

.floating-shapes div:nth-child(10) {
    top: 80%;
    left: 90%;
    animation-duration: 9s;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
    animation: borderSlide 3s linear infinite;
}

@keyframes borderSlide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px 10px;
    display: inline-block;
}

.footer-links a:hover {
    color: #007bff;
    transform: translateY(-3px) scale(1.1);
    text-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

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

.footer-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-section {
        animation-delay: 0.2s !important;
    }
    
    .card1:hover, .card2:hover, .card3:hover, .card4:hover {
        transform: translateY(-5px) scale(1.05);
    }

    .footer-links a:hover {
        transform: translateY(-2px) scale(1.05);
    }
}

/* From Uiverse.io by Praashoo7 */ 
.main {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
  
  .up {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
  }
  
  .down {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
  }
  
  .card1 {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 90px 5px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .instagram {
    margin-top: 1.5em;
    margin-left: 1.2em;
    fill: #cc39a4;
  }
  
  .card2 {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 90px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .twitter {
    margin-top: 1.5em;
    margin-left: -.9em;
    fill: #03A9F4;
  }
  
  .card3 {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 5px 5px 90px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .github {
    margin-top: -.6em;
    margin-left: 1.2em;
  }
  
  .card4 {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 5px 90px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .discord {
    margin-top: -.9em;
    margin-left: -1.2em;
    fill: #8c9eff;
  }
  
  .card1:hover, .card2:hover, .card3:hover, .card4:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .card1:hover .instagram, .card2:hover .twitter, .card3:hover .github, .card4:hover .discord {
    fill: white;
  }
  
  .card1::before, .card2::before, .card3::before, .card4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s;
  }
  
  .card1:hover::before, .card2:hover::before, .card3:hover::before, .card4:hover::before {
    transform: translateX(100%) rotate(45deg);
  }

/* From Uiverse.io by SelfMadeSystem */ 
.rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.3rem;
    --stroke: #666;
    --fill: #ffc73a;
  }
  
  .rating input {
    appearance: unset;
  }
  
  .rating label {
    cursor: pointer;
  }
  
  .rating svg {
    width: 2rem;
    height: 2rem;
    overflow: visible;
    fill: transparent;
    stroke: var(--stroke);
    stroke-linejoin: bevel;
    stroke-dasharray: 12;
    animation: idle 4s linear infinite;
    transition: stroke 0.2s, fill 0.5s;
  }
  
  @keyframes idle {
    from {
      stroke-dashoffset: 24;
    }
  }
  
  .rating label:hover svg {
    stroke: var(--fill);
  }
  
  .rating input:checked ~ label svg {
    transition: 0s;
    animation: idle 4s linear infinite, yippee 0.75s backwards;
    fill: var(--fill);
    stroke: var(--fill);
    stroke-opacity: 0;
    stroke-dasharray: 0;
    stroke-linejoin: miter;
    stroke-width: 8px;
  }
  
  @keyframes yippee {
    0% {
      transform: scale(1);
      fill: var(--fill);
      fill-opacity: 0;
      stroke-opacity: 1;
      stroke: var(--stroke);
      stroke-dasharray: 10;
      stroke-width: 1px;
      stroke-linejoin: bevel;
    }
  
    30% {
      transform: scale(0);
      fill: var(--fill);
      fill-opacity: 0;
      stroke-opacity: 1;
      stroke: var(--stroke);
      stroke-dasharray: 10;
      stroke-width: 1px;
      stroke-linejoin: bevel;
    }
  
    30.1% {
      stroke: var(--fill);
      stroke-dasharray: 0;
      stroke-linejoin: miter;
      stroke-width: 8px;
    }
  
    60% {
      transform: scale(1.2);
      fill: var(--fill);
    }
  }
  
  /* Smooth Scroll Animation für Footer Links */
  html {
    scroll-behavior: smooth;
  }

@keyframes gentleFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Event Grid Styles */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

.event-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: auto; /* Let content determine height by default */
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.event-card:hover::before {
    transform: translateX(100%);
}

.event-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.event-card-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
}

.event-date .month {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.event-date .year {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.event-title h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.event-card-content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.event-location a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-location a:hover {
    color: #00bfff;
}

.event-description {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.event-requirements {
    margin-bottom: 1.5rem;
}

.event-requirements h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.event-requirements ul {
    list-style: none;
    padding: 0;
}

.event-requirements li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    padding-left: 1.5rem;
    position: relative;
}

.event-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.register-btn, .share-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.register-btn {
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: white;
}

.share-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.register-btn:hover, .share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Anmelde-Popup Styles */
.registration-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.registration-popup.active {
    display: flex;
}

.popup-content {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.popup-close:hover {
    transform: rotate(90deg);
}

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

.popup-header h2 {
    color: #fff;
    font-size: 2rem;
    margin: 0;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.popup-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.popup-detail-item i {
    color: #ff6b6b;
}

.popup-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #fff;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.1);
}

.popup-submit {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 1.5rem;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }

    .popup-details {
        grid-template-columns: 1fr;
    }
}

/* CryptoCon Academy Styles */
.academy-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.academy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.academy-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.academy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.academy-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.academy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.academy-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.academy-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.academy-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.academy-features .feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.academy-features .feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.academy-features .feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.academy-features .feature:hover::before {
    transform: translateX(100%);
}

.academy-features h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.academy-features ul {
    list-style: none;
    padding: 0;
}

.academy-features ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.academy-features ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.academy-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 2rem;
    transition: all 0.3s ease;
}

.academy-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.academy-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.academy-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.academy-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
    margin-bottom: 1rem;
}

.academy-btn:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .academy-content {
        grid-template-columns: 1fr;
    }
    
    .academy-features {
        grid-template-columns: 1fr;
    }
    
    .academy-section {
        padding: 2rem 1rem;
    }
    
    .academy-cta {
        position: static;
    }
}

/* Corporate Section Styles */
.corporate-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
}

.corporate-container {
    max-width: 1200px;
    margin: 0 auto;
}

.corporate-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.corporate-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.corporate-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.corporate-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.corporate-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.corporate-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.corporate-features .feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.corporate-features .feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.3);
}

.corporate-features h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.corporate-features ul {
    list-style: none;
    padding: 0;
}

.corporate-features ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.corporate-features ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}

.corporate-benefits {
    margin-top: 3rem;
}

.corporate-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.3);
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.benefit-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.corporate-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 2rem;
}

.corporate-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.corporate-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.corporate-cta ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.corporate-cta ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.corporate-cta ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
}

.corporate-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #007bff, #00bfff);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.corporate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .corporate-content {
        grid-template-columns: 1fr;
    }
    
    .corporate-features {
        grid-template-columns: 1fr;
    }
    
    .corporate-section {
        padding: 2rem 1rem;
    }
    
    .corporate-cta {
        position: static;
    }
}

@media (max-width: 768px) {
    .event-card {
        height: auto;
        min-height: unset;
    }

    .event-card-content {
        padding: 2.5rem;
    }

    .event-requirements {
        margin-bottom: 1rem;
    }

    .event-requirements li {
        margin-bottom: 0.2rem;
    }

    .event-actions {
        margin-top: 1rem;
    }

    .register-btn, .share-btn {
        padding: 0.6rem;
    }
}
