:root {
    --play-bg: #3777ca;
    --play-surface: #ffffff;
    --play-accent: #fafafa;
    --play-accent-soft: #d2daff;
    --play-text: #000000;
    --play-muted: #b1b1b1;
}

main {
    width: 80%;
    margin: 0 auto;

}

body.play-body {
    color: var(--play-text);
    background: var(--play-bg);
    font-family: 'Poppins', sans-serif;

}

.card {
    background: var(--play-surface);
    color: var(--play-text);
}

.std-button {
    background: var(--play-accent);
    color: var(--play-text);
    border: none;
    border-radius: .5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 300;
    transition: background-color 0.25s ease, color 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: .5rem;
    text-decoration: none;
}

.most-played-font {
    font-size: 1rem;
    padding-bottom: .25rem;
    padding-top: .25rem;
}

.std-button-colored {
    background: var(--play-bg);
    color: var(--play-accent);
    border: none;
    border-radius: .5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 300;
    transition: background-color 0.25s ease, color 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: .5rem;
    text-decoration: none;

}

.std-box {
    background: var(--play-surface);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(25, 14, 48, 0.08);
    border-bottom: #5a97e6 solid .5rem;
    margin: 0.5rem;
}

.std-button:hover {
    background: var(--play-accent-soft);
    color: var(--play-text);

}

/* Global Width 70% on desktop 95% on mobile */
@media (max-width: 991px) {
    .global-width {
        width: 95%;
        margin: 0 auto;
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .global-width {
        width: 70%;
        margin: 0 auto;
        padding: 2rem;
    }
}

/* Hide on desktop */
@media (min-width: 992px) {
    .hide-on-desktop {
        display: none;
    }
}

@media (max-width: 991px) {
    .hide-on-desktop {
        display: block;
    }
}

/* Hide on desktop */
@media (min-width: 992px) {
    .hide-on-desktop {
        display: none;
    }
}

@media (max-width: 991px) {
    .hide-on-desktop {
        display: block;
    }
}


.no-background {
    background: transparent !important;
}

.drop-shadow {
    box-shadow: 0 20px 50px rgba(25, 14, 48, 0.08);
    border-bottom: #5a97e6 solid .5rem;
}

.homeButton {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.25rem;
    font-weight: 600;
    background: var(--play-surface);
    box-shadow: 0 20px 50px rgba(25, 14, 48, 0.08);
    border-bottom: #5a97e6 solid .5rem;
    border-radius: 1rem;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 0.75rem 1.5rem;

}

.sidebarNav {
    background: var(--play-bg) !important;

    border-bottom: #5a97e6 solid .5rem;
    border-radius: 1rem;
    max-width: 45%;
}

.sidebarNav .nav-link {
    color: var(--play-text) !important;
    border-radius: 1rem;
    background-color: var(--play-surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    width: 100%;
    margin-bottom: .5rem;

}

.mutedLink {
    color: var(--play-muted) !important;
    text-decoration: none;
}

.homeButtonLink {
    color: var(--play-text) !important;
    text-decoration: none;
}

.hambergerButton {
    background: transparent;
}

/* Placed on the hamberger and the div the hamberger is in to align it to the right */
.right-side {
    display: flex;
    justify-content: flex-end;

}

.navbar {
    background: transparent !important;
    width: 80%;
    margin: 0 auto;
    border-radius: 2rem;
    border-bottom-style: var(--tw-border-style);


}

.navbar .nav-link {
    color: #000000 !important;
    border-radius: 1rem;
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;

}

.navbar .navbar-brand {
    color: #ffffff !important;
    background-color: #75adf5;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffffff !important;
    background-color: #75adf5;

}

.active .nav-link {
    color: #ffffff !important;
    background-color: #8abdff;
}

.floating-display-box {
    background: var(--play-surface);
    border-radius: 2rem;
    padding: 2rem;
}

.hero-play {
    border-radius: 2rem;
    padding: 3rem 2rem;
}

.service-card {
    background: var(--play-surface);
    border-radius: 2rem;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 2rem 2rem 0 0;
}

.service-img-container img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: saturate(1.05);
}

.service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
    background: #00000043;
}

.overlay-text {
    color: #ffffff;
    font-weight: 700;
    padding: 1rem;
    background: #000000b3;
    border-radius: 2rem 2rem 0 0;
}

.card-body {
    background: transparent;
}

.btn-outline-secondary {
    border-color: rgba(31, 41, 55, 0.08);

}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background-color: rgba(159, 122, 234, 0.12);
    border-color: rgba(159, 122, 234, 0.28);
}

.alert-warning {
    background-color: #fff4e5;
    border-color: #fcd34d;
    color: #7c2d12;
}

.table {
    background: white;
    border-radius: 1rem;
}

.table th,
.table td {
    border-top: none;
}

.badge.bg-secondary {
    background-color: #c4b5fd;
    color: #29166f;
}