.container{
    height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.mainTitle{
    font-size: 5rem;
    padding: 1rem;
}
.slug{
    text-align: center;
    font-size: 1.5rem;
    color: gray;
}
.card{
    width: 40%;
    height: auto;
    background-color: rgba(30, 30, 50, 0.209);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
    z-index: 1;
}


.currentTitle{
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 1.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.dateContainer{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem 0 0 0;
    color: rgb(161, 161, 161);
    /* This makes the cool line */
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    width: 100%;
    justify-content: center;
}

.dateContainer p {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
}
.buttonContainer{
    display: flex;
    gap: 1.5rem;
    height: 3rem;

}
.viewBrackets, .viewRules {
    width: 12rem;
    height: 100%;
    border-radius: 12px;
    border: none;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    border: 0;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.viewBrackets:hover, .viewRules:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 1);
    color: white;
    transform: translateY(-1px);
    background-color: rgba(255, 255, 255, 0.1);
}

.viewBrackets::before, .viewRules::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.3s ease;
    z-index: 1;
}

.viewBrackets:hover::before, .viewRules:hover::before {
    left: 100%;
}