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 #3498db;
    overflow-x: hidden;
    position: relative;
}

header h1 {
    font-size: 3.5rem;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    animation: glitch 3s infinite;
    width: 100%;
}

header h1::before,
header h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

header h1::before {
    left: 2px;
    text-shadow: -2px 0 #ff0080;
    animation: glitch-2 3s infinite reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

header h1::after {
    left: -2px;
    text-shadow: 2px 0 #0ff;
    animation: glitch-2 3s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: -2px 0 #ff0080, 2px 2px #0ff;
    }
    25% {
        transform: translate(-2px, 2px);
        text-shadow: 2px -2px #ff0080, -2px 2px #0ff;
    }
    50% {
        transform: translate(2px, -2px);
        text-shadow: 2px 0 #ff0080, -2px -2px #0ff;
    }
    75% {
        transform: translate(-2px, 2px);
        text-shadow: -2px -2px #ff0080, 2px 2px #0ff;
    }
    100% {
        transform: translate(0);
        text-shadow: -2px 0 #ff0080, 2px 2px #0ff;
    }
}

@keyframes glitch-2 {
    0% {
        transform: translate(0);
    }
    25% {
        transform: translate(2px, -2px);
    }
    50% {
        transform: translate(-2px, 2px);
    }
    75% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #3498db;
    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;
}

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

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

.skill-item:hover, .achievement-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

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

.video-container {
    max-width: 1000px;
    margin: 4rem auto;
    position: relative;
    padding-top: 56.25%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.button-container {
    text-align: center;
    margin: 4rem 0;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

footer {
    background: #111;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.team {
    color: #3498db;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

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

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

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

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

@media (max-width: 768px) {
    header h1 {
        font-size: 3rem;
    }
    
    .skills-grid, .achievements-grid {
        grid-template-columns: 1fr;
    }
}

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