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

body {
    min-height: 100vh;
    padding: 40px;
    background: linear-gradient(135deg,
            #0f172a,
            #111827,
            #1e293b);
    font-family: "Inter", sans-serif;
    color: white;
}

.project-container {
    display: flex;
    justify-content: center;
}

.project-card {
    max-width: 1100px;
    width: 100%;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;

    padding: 40px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.project-header {
    text-align: center;
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    padding: 8px 18px;

    border-radius: 999px;

    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);

    color: #a5b4fc;
    font-size: 0.9rem;
}

.project-header h1 {
    font-size: 3rem;
    margin-top: 20px;

    background: linear-gradient(to right,
            #60a5fa,
            #818cf8,
            #c084fc);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    margin-top: 12px;
    color: #94a3b8;
    font-size: 1.1rem;
}

.description {
    text-align: center;
    max-width: 850px;
    margin: auto;

    line-height: 1.8;
    color: #cbd5e1;

    font-size: 1.05rem;
}

.features-grid {
    margin-top: 40px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;
    padding: 25px;

    text-align: center;

    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);

    border-color: #60a5fa;

    box-shadow:
        0 10px 25px rgba(96, 165, 250, 0.25);
}

.feature-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.feature-card p {
    color: #e2e8f0;
    font-weight: 500;
}

.footer-text {
    margin-top: 40px;

    padding: 20px;

    border-left: 4px solid #60a5fa;

    background: rgba(255, 255, 255, 0.03);

    color: #cbd5e1;
    line-height: 1.8;

    border-radius: 12px;
}


.screenshots-section {
    margin-top: 40px;
    padding: 100px 5%;
    background: #0f172a;
    border-radius: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
    font-size: .9rem;
}

.section-header h2 {
    font-size: 3rem;
    margin: 20px 0;
    color: white;
}

.section-header p {
    color: #94a3b8;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.screenshot-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .4s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.screenshot-card img {
    width: 100%;
    display: block;
    transition: .5s ease;
}

.screenshot-card:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .85));

    color: white;
}

.overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.overlay p {
    color: #cbd5e1;
}



.download-card {
    margin: auto;
    width: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;
    padding: 25px;

    text-align: center;

    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-8px);

    border-color: #60a5fa;

    box-shadow:
        0 10px 25px rgba(96, 165, 250, 0.25);
}

.download-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.download-card p {
    color: #e2e8f0;
    font-weight: 500;
}