/* Fonts and Sizes */
body {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    color: #e0e0e0;
}

.header-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    margin-top: 100px;
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    margin-top: 20px;
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 2.5vw, 22px);
}

@media (max-width: 720px) {
    .container-fluid {
        width: 100% !important;
    }

    .navbar {
        width: 100% !important;
    }
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f0f0f0;
    min-height: 300px;
    background-color: #660000;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.card-title::before {
    content: attr(data-symbol);
    font-size: 22px;
    margin-right: 10px;
}

.stars {
    color: gold;
    font-size: 16px;
    margin-left: 8px;
    vertical-align: middle;
}