body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    flex: 1;
}

.photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    margin-bottom: 30px;
    border: 1px solid #222;
}

h1 {
    font-size: 24px;
    margin: 0 0 15px 0;
    font-weight: normal;
    letter-spacing: 2px;
}

.description {
    font-size: 14px;
    margin: 0 0 30px 0;
    color: #aaa;
}

.links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 12px 0;
    font-size: 16px;
    transition: all 0.3s;
}

.links a:hover {
    color: #666;
}

.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-top: 1px solid #111;
    background-color: #000;
}

.license {
    font-size: 12px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

.license:hover {
    color: #999;
}

.language-switcher {
    font-size: 24px;
    cursor: pointer;
    color: #555;
    transform: rotate(90deg);
    transition: all 0.3s;
}

.language-switcher:hover {
    color: #999;
}
.license-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.license-text {
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #ccc;
    line-height: 1.5;
    padding: 20px;
    border: 1px solid #222;
    overflow-x: auto;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #333;
    padding: 8px 20px;
    transition: all 0.3s;
}

.back-link:hover {
    background-color: #111;
    border-color: #444;
}
