body {
    margin: 0;
    font-family: "Orbitron", sans-serif;
    background: #0e0e0e;
    color: #00ffea;
    /* margin: 0;
    padding: 0; */
    overflow-x: hidden;
    letter-spacing: 1.6px;
}

/* Mobile restriction overlay */
.mobile-restriction-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 2rem;
    text-align: center;
}

.mobile-restriction-content {
    max-width: 400px;
    animation: fadeInUp 0.6s ease-out;
}

.mobile-restriction-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #00ffea, #00d1b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.4);
}

.mobile-restriction-icon svg {
    width: 40px;
    height: 40px;
    fill: #000;
}

.mobile-restriction-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffea;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
}

.mobile-restriction-message {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mobile-restriction-suggestion {
    font-size: 0.9rem;
    color: #707070;
    font-style: italic;
}

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

/* Show overlay on mobile and tablet portrait */
@media screen and (max-width: 1024px) and (orientation: portrait) {
    .mobile-restriction-overlay {
        display: flex;
    }
    
    body > *:not(.mobile-restriction-overlay) {
        filter: blur(5px);
        pointer-events: none;
    }
}

@media screen and (max-width: 768px) {
    .mobile-restriction-overlay {
        display: flex;
    }
    
    body > *:not(.mobile-restriction-overlay) {
        filter: blur(5px);
        pointer-events: none;
    }
}

header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #000;
    border-bottom: 2px solid #00ffea;
    z-index: 10;
}

.menu-icon {
    font-size: 2rem;
    cursor: pointer;
    display: block;
}

header h1 {
    font-size: 1.5rem;
}

.dash-button {
    display: flex;
    gap: 10px;
}

.dash-button button {
    background: #00ffea;
    color: #000;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

header .dash-button button:hover {
    background: #00d1b6;
}

#hero {
    background: linear-gradient(135deg, #00ffea, #000);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000;
}

.hero-content {
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00ffea;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.btn:hover {
    background: #00d1b6;
}

#services {
    padding: 50px 20px;
    background: #000;
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: #0e0e0e;
    border: 2px solid #00ffea;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-decoration: none;
    color: #00ffea;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#about {
    padding: 50px 20px;
    text-align: center;
    background: #000;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.person-card {
    position: static;
    background: #0e0e0e;
    border: 2px solid #00ffea;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.person-card .landscape {
    width: 100%;
    border-radius: 10px;
}

.person-card .portrait {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #00ffea;
}

.person-card p {
    margin-top: 10px;
    font-size: 1.2rem;
}

footer {
    padding: 20px;
    text-align: center;
    background: #000;
    border-top: 2px solid #00ffea;
}
