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

body {
    font-family: "Purple Purse", cursive;
    background: #2b232d; /* tmavé pozadí */
    color: #f5f0e8;
    min-height: 100vh;
}

.l2oops-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: inline-block;
    transition: transform 0.12s ease-out;
}

.l2oops-badge:hover {
    transform: translateY(-2px);
}


.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

/* logo */

.header {
    padding: 40px 16px 20px;
    text-align: center;
}

.logo {
    font-family: "Cinzel", serif;
    font-size: 32px;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-main {
    text-transform: none;
}

.logo-icon {
    font-size: 22px;
}

/* cards */

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px 40px;
    width: 100%;
}

.cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgba(20, 15, 22, 0.24);
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 260px;
    padding: 40px 24px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.card-top-label {
    font-family: "Cinzel", serif;
    font-size: 14px;
    color: #d2b48c;
    margin-bottom: 16px;
}

.card-top-label .subtitle {
    font-size: 11px;
    opacity: 0.8;
}

.card-title {
    font-family: "Cinzel", serif;
    font-size: 22px;
    margin-bottom: 6px;
}

.card-rate {
    font-size: 18px;
    margin-bottom: 28px;
}

.card-date {
    background: #4b4651;
    padding: 10px 14px;
    border-radius: 2px;
    font-size: 13px;
    margin-bottom: 16px;
}

.card-date-highlight {
    background: #e28a58;
}

.card-more {
    border: none;
    background: transparent;
    color: #cbbba0;
    font-size: 13px;
    cursor: pointer;
    margin-top: 4px;
}

/* ribbon */

.card-highlight {
    border-top: 4px solid #e28a58;
}

.card-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    background: #e28a58;
    padding: 4px 26px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 16px;
}

/* footer */

.footer {
    text-align: center;
    padding: 10px 16px 30px;
    font-size: 12px;
    color: #b3a7b5;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

/* společný styl pro buttony */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    filter 0.12s ease-out;
    color: #fdfaf4;
}

.social-label {
    line-height: 1;
}

/* konkrétní služby */
.discord-btn {
    background: #5865f2;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.telegram-btn {
    background: #229ed9;
    box-shadow: 0 8px 20px rgba(34, 158, 217, 0.4);
}

/* hover / active efekty */
.social-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.social-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}


.footer-text.small {
    font-size: 11px;
    opacity: 0.8;
}

