* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #333;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0 2rem;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    cursor: pointer;
}

.logo img {
height: 30px;
margin-right: 1.0rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-menu a:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu a.active {
    color: #ff6b35;
}
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}
.nav-menu a.active:hover {
    color: #000;
}
.nav-menu a.active:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23333333;stop-opacity:1" /><stop offset="100%" style="stop-color:%23000000;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23sky)"/><g opacity="0.3"><circle cx="200" cy="150" r="8" fill="%23ff6b35"/><circle cx="400" cy="100" r="6" fill="%23ff6b35"/><circle cx="600" cy="200" r="10" fill="%23ff6b35"/><circle cx="800" cy="120" r="7" fill="%23ff6b35"/><circle cx="1000" cy="180" r="9" fill="%23ff6b35"/></g></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -1px;
}
.livemap {
    width: 1140px;
    height: 80vh;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    margin-top: 50px;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 10;
}

.section.active {
    display: block;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #ff6b35;
    font-weight: 300;
}

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

.feature-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

.stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 4rem 2rem;
    margin: 4rem -2rem;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.community-section {
    background: #2a2a2a;
    margin: 4rem -2rem;
    padding: 4rem 2rem;
    border-radius: 15px;
    color: white;
}

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

.community-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: white;
}

.community-item:hover {
    transform: translateX(5px);
}

.flight-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

.flight-table th {
    padding: 1rem;
    text-align: left;
    color: #ff6b35;
    font-weight: 600;
    background: #0a0a0a;
}

.flight-table td {
    padding: 1rem;
    color: white;
    border-bottom: 1px solid #333;
}

.flight-table tr:hover {
    cursor: pointer;
    background: rgba(255, 107, 53, 0.1);
}

.status-active {
    color: #4CAF50;
    font-weight: bold;
}

.status-scheduled {
    color: #ff6b35;
    font-weight: bold;
}

.status-completed {
    color: #ccc;
    font-weight: bold;
}

.loading {
    text-align: center;
    color: #ff6b35;
    font-size: 1.2rem;
    padding: 2rem;
}

.refresh-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.refresh-btn:hover {
    background: #e55a2e;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { left: 20%; animation-delay: -5s; }
.floating-element:nth-child(3) { left: 30%; animation-delay: -10s; }
.floating-element:nth-child(4) { left: 40%; animation-delay: -15s; }
.floating-element:nth-child(5) { left: 50%; animation-delay: -22s; }
.floating-element:nth-child(6) { left: 60%; animation-delay: -27s; }
.floating-element:nth-child(7) { left: 70%; animation-delay: -19s; }
.floating-element:nth-child(8) { left: 80%; animation-delay: -11s; }


@keyframes float {
    from {
        transform: translateY(100vh) rotate(0deg);
    }
    to {
        transform: translateY(-100px) rotate(360deg);
    }
}

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem 2rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .flight-table {
        font-size: 0.9rem;
    }
    
    .flight-table th,
    .flight-table td {
        padding: 0.5rem;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    color: white;
    position: relative;
}

.close {
    color: #ff6b35;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.close:hover {
    opacity: 0.7;
}

.modalScroll {
    max-height: 550px;
    margin-bottom: 1rem;
    overflow-x: auto;
}

#resultAirplane img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-width: 435px;
}

#flightInfoModalContent2 {
    margin-bottom: 1rem;
}
#flightInfoModalContent2  a {
    color: #FFF;
    text-decoration: none;
}
#flightInfoModalContent3 {
    line-height: 1.5rem;
}
.profile {
    border-radius: 10px;
}
.profile:hover {
    background-color: #333;
}
.proPic {
    float: left;
    margin-right: 1rem;
    max-width: 90px;
    border-radius: 10px;
}
.flightStats {
    color: #AAA;
}
.rapportage {
    line-height: 1.3rem;
    font-size: 0.95rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}
.plus {
    color: #1ae45e;
}
.minus {
    color: #ee3245;
}
.score {
    font-weight: bold;
}
.highscore {
    display: inline-block;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}