@import url("https://fonts.googleapis.com/css2?family=Geist+Sans:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geist Mono:wght@100..900&display=swap");

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

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #e9e9e9;
    font-family: "Geist Sans", sans-serif;
}

.back {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-family: "Geist Mono", monospace;
}

.card-container {
    width: 100%;
    max-width: 500px;
    padding: 30px;
}

.card {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin: 0 auto;
    z-index: 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 0;
    color: #888;
    font-size: 14px;
    font-family: "Geist Mono", monospace;
}

.card-body {
    padding: 20px;
    border-radius: 24px;
    z-index: 2;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #333;
}

.profile-info {
    color: white;
}

.name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.status {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #aaa;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #996633;
    border-radius: 50%;
    margin-right: 8px;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background-color: #333;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #996633;
}

.btn i {
    font-size: 14px;
}

.card-footer {
    background-color: #996633;
    color: #000;
    padding: 30px 20px;
    padding-bottom: 12.5px;
    margin-top: -20px;
    border-radius: 0 0 24px 24px;
    height: 60px;
    width: 100%;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 -5px 15px #99663333;
    position: relative;
    z-index: 0;
}

.card-footer a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    color: #000;
    font-family: "Geist Mono", monospace;
    position: relative;
    transition: all 0.3s ease;
}

.card-footer a.download-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.card-footer a.download-link:hover {
    color: rgb(83, 55, 26);
}

.card-footer a.download-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.time {
    display: flex;
    align-items: end;
}

.time img {
    margin-right: 4px;
}

.button-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0.5);
}

.glow {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 1000px;
    background: radial-gradient(ellipse at center, #99663399 0%, #99663300 70%);
    pointer-events: none;
}
