/* ===== СТРАНИЦА НЕДОПРОГРАММИСТА ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1a1a2e;
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    color: #e0e0e0;
}

.card {
    background: rgba(30, 30, 50, 0.95);
    backdrop-filter: blur(5px);
    border: 2px solid #6c63ff;
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.15), inset 0 0 15px rgba(108, 99, 255, 0.05);
    max-width: 450px;
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 8px;
}

.photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff6584;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 101, 132, 0.3);
}
.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

h1 {
    color: #6c63ff;
    font-size: 2rem;
    font-weight: normal;
    text-shadow: 0 0 8px rgba(108, 99, 255, 0.5);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.subtitle {
    color: #ff6584;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.description {
    color: #b0b0d0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0 1.5rem;
}
.social-icons a {
    color: #6c63ff;
    font-size: 2rem;
    transition: all 0.2s;
    text-decoration: none;
}
.social-icons a:hover {
    color: #ff6584;
    transform: scale(1.2);
    text-shadow: 0 0 15px #ff6584;
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: #ff6584;
    text-decoration: none;
    border: 1px solid #ff6584;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}
.back-link:hover {
    background: #ff6584;
    color: #1a1a2e;
    box-shadow: 0 0 15px rgba(255, 101, 132, 0.5);
}