@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    position: relative;
}

#background-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0f0f0f, #1c1c2d, #2a1d47, #332b4f);
}

header {
    width: 100%;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

header img.logo {
    margin-left: 20px;
    height: 100px;
    width: auto;
    cursor: pointer;
    justify-content: center;
}

header img.telegram {
    margin-right: 20px;
    height: 60px;
    width: auto;
    cursor: pointer;
    justify-content: center;
}


.card-container {
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.card {
    position: relative;
    background: linear-gradient(145deg, #1c1c1e, #292932);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.card-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.card h2 {
    margin-top: 70px;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.card p {
    margin: 12px 0 24px;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.card button {
    background-color: #3b3b3b;
    color: #999;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 14px;
    cursor: not-allowed;
    opacity: 0.8;
    transition: background-color 0.3s ease;
}

.card button:hover {
    background-color: #444;
}