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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #0d3b66, #1f618d, #3d85c6);
    color: white;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

header {
    text-align: center;
    margin-bottom: 55px;
}

.logo {
    width: 96px;
    height: 96px;

    margin: 0 auto 24px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.35);

    font-size: 2rem;
    font-weight: bold;

    backdrop-filter: blur(8px);
}

h1 {
    font-size: 3rem;
    margin-bottom: 14px;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.project {
    display: block;
    text-decoration: none;

    background: white;
    color: #222;

    padding: 24px;

    border-radius: 18px;

    border-top: 6px solid transparent;

    box-shadow: 0 12px 28px rgba(0,0,0,.18);

    transition: transform .2s ease, box-shadow .2s ease;
}

.project:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.scout {
    border-color: #2ecc71;
}

.myrep {
    border-color: #e74c3c;
}

.quiz {
    border-color: #9b59b6;
}

.paper {
    border-color: #f39c12;
}

.pool {
    border-color: #3498db;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 42px;

    margin-bottom: 18px;
}

.project h2 {
    text-align: center;
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.project p {
    color: #666;
    line-height: 1.6;
    text-align: center;
    min-height: 72px;
}

.open {
    display: block;
    margin-top: 20px;

    text-align: center;

    font-weight: bold;
    color: #1f618d;
}

footer {
    margin-top: 70px;

    text-align: center;

    font-size: .95rem;

    opacity: .85;

    line-height: 1.8;
}

@media (max-width: 600px) {

    .container {
        padding: 40px 16px;
    }

    h1 {
        font-size: 2.3rem;
    }

    .owner {
        font-size: 1rem;
    }

    .owner strong {
        font-size: 1.2rem;
    }

    .logo {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }

}
