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

:root {
    --accent: #d87e3d;
    --bg-overlay: rgba(9, 9, 11, 0.7);
    --text-main: #fafafa;
    --text-muted: #d1d1d6;
}

::selection {
    background: var(--accent);
    color: #ffffff;
}

::-moz-selection {
    background: var(--accent);
    color: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('https://content.porkey.net/Production/BD.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.content-box {
    width: 100%;
    max-width: 360px;
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--accent);
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.box-header {
    background-color: var(--accent);
    padding: 0.75rem;
    text-align: center;
}

.box-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.box-content {
    padding: 1.5rem;
}

.description p {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.projects-label {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--text-muted);
}

.projects-label strong {
    color: var(--accent);
    font-weight: 700;
}

.projects-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: rgba(216, 126, 61, 0.15);
    border: 1px solid var(--accent);
    border-radius: 4px;
    text-align: center;
    transition: background 0.2s ease;
}

.project-link:hover {
    background: var(--accent);
}

.error-msg {
    font-size: 0.85rem;
    color: #ffbaba;
    font-style: italic;
}

@media (min-width: 400px) {
    .projects-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .project-link {
        flex: 1 1 auto;
    }
}
