* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    min-height: 100vh;
    background: #030033;
       background-image: url('https://transparenttextures.com/patterns/asfalt-light.png');
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1300px;
    padding: clamp(25px, 5vw, 45px);
    border-radius: 20px;
}

.glass {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.8s ease;
}

.hero {
    text-align: center;
    margin-bottom: 35px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
    background: rgba(0, 114, 255, 0.15);
    color: #9ecbff;
    margin-bottom: 14px;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 3rem);
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #cfd8e3;
    line-height: 1.6;
}


.video-section {
    margin-bottom: 35px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    font-weight: 600;
    border-radius: 30px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.45);
    transition: all 0.25s ease;
}

.download-btn span {
    font-size: 0.85rem;
    opacity: 0.85;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(0, 114, 255, 0.65);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 30px;
    border: 1px solid rgba(0, 114, 255, 0.5);
    color: #9ecbff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.secondary-btn span {
    font-size: 0.8rem;
    opacity: 0.85;
}

.secondary-btn:hover {
    background: rgba(0, 114, 255, 0.15);
    color: #ffffff;
}

.project-summary {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 16px;
}

.project-summary h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 14px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-summary p {
    color: #cfd8e3;
    line-height: 1.7;
    margin-bottom: 24px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    color: #e6f0ff;
}

.feature i {
    color: #00c6ff;
}

.project-summary h3 {
    margin-bottom: 10px;
    color: #00c6ff;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-stack span {
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0, 114, 255, 0.15);
    color: #9ecbff;
    font-size: 0.85rem;
}

.footer {
    text-align: center;
    margin-top: 35px;
    font-size: 0.8rem;
    color: #9aa7b5;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
