body {
    font-family: 'Neue Montreal', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

header {
    background: linear-gradient(to right, #111, #1a1a1a);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 4px solid #ffff00;
}

header h1 {
    font-size: 3.5rem;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffff00, #ff0000, #ffff00);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: glowText 3s linear infinite;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #ffff00;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

.description-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

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

.demo-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.demo-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.demo-image:hover {
    transform: scale(1.02);
}

h2 {
    color: #ffff00;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    color: #ffff00;
    font-size: 1.5rem;
    margin: 1rem 0;
}

footer {
    background: linear-gradient(to right, #111, #1a1a1a);
    color: #ccc;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
    border-top: 4px solid #ffff00;
}

.project-date {
    color: #666;
    font-size: 0.9rem;
}

@keyframes glowText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

@media (max-width: 768px) {
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
#pacman_img {
    width: 60%;
    height: 30%;
}