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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0F1115;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #e2e8f0;
}

.page {
    max-width: 640px;
    width: 100%;
}

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

.logo {
    width: 220px;
    height: auto;
    margin-bottom: 16px;
}

.tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #151821;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.project-icon {
    font-size: 36px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #232735;
    color: #fff;
    border-radius: 12px;
}

img.project-icon {
    background: none;
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 0;
}

.project-info {
    flex: 1;
    min-width: 0;
}

.project-info h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.project-info p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.5;
}

.beta-tag {
    font-size: 11px;
    font-weight: 700;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 2px 8px;
    border-radius: 10px;
    vertical-align: baseline;
    position: relative;
    top: -4px;
    letter-spacing: 0.5px;
}

.arrow {
    font-size: 24px;
    color: #a0aec0;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.project-card:hover .arrow {
    transform: translateX(4px);
    color: #667eea;
}

footer {
    text-align: center;
    margin-top: 48px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 480px) {
    .logo {
        width: 160px;
    }

    .tagline {
        font-size: 16px;
    }

    .project-card {
        padding: 16px;
        gap: 14px;
    }

    .project-icon {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
}
