
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

html{
    font-family: Roboto, sans-serif;
}

.navbar{
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    text-align: center;
  }
  
.navbar .logo{
    width: 100%;
    height: 58px;
}

:root {
    --navbar-height: 98px;
}

.navbar-spacer {
    height: var(--navbar-height);
    background-color: #1B1F42;
}

@media screen and (max-width: 919.99px) {
    :root {
        --navbar-height: 98px;
    }
}

.header-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('../../../assets/page-logos/1/au/bg-au.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0px;
}

.header-banner span {
    position: relative;
    z-index: 1;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-banner p {
    position: relative;
    z-index: 1;
    font-size: 34px;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-info{
    text-align: center;
    margin-top: 32px;
    color: #555;
}

.footer{
    background: #1f2937;
    color: #f3f4f6;
    text-align: center;
    padding: 16px;
  }

.footer-div{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 15px;
}

.splash-wrapper{
    width: 100%;
}

li{
    position: relative;
}

li::before{
    content: "✅";
    position: relative;
    margin-right: 5px;
    font-size:18px;
}

.play-now{
    background: #1a2c38;
    color: white;
    padding: 15px 30px;
    transition: all 0.1s ease-in;
    border-radius: 6px;
    font-weight: 600;
}

article:hover .play-now{
    background: #ef1633;
}

.score-num{
    color: #1a2c38;
    font-weight: 800;
    font-size: 35px;
    line-height: 35px;
    margin-top: -10px;
}

.score{
    font-size: 30px;
}

article{
    height: 180px;
}

main{
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.op-link>*{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.featured{
    border: #14b8a6 4px solid;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.bonus{
    font-weight: 600;
    padding: 8px;
    font-family: Helvetica, sans-serif;
    font-size: 22px;
    text-align: center;
}

.op-logo{
    align-items: flex-start;
}

.op-bonus{
    position: relative;
}

.bonus-banner{
    display: block;
    position: absolute;
    top: 0;
    left: calc( 50% - 50px );
    background: #14b8a6;
    color: white;
    padding: 3px 10px;
    border-radius: 0 0 20px 20px;
}

a.op-link{
    color: black;
    height: 100%;
    width: 100%;
    display: block;
    text-decoration: none;
    display: grid;
    grid-template-columns: 20% 30% 15% 20% 15%;
}

a.op-link:hover{
    text-decoration: none;
}

article:hover .bonus{
    color:  #ef1633!important;
}

article{
    min-height: 150px;
    box-shadow:  rgba(0, 0, 0, 0.1) 1px 1px 10px;
    margin-bottom: 20px;
    max-width: 1200px;
    width: 100%;
    transition: all 0.3s ease-in;
    border-radius: 5px;
}

article:hover{
    transform: scale(1.07);
}

.header__img{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

footer{
    min-height: 20px;
    background: #1a2c38;
    width: 100%;
}

.img-wrapper{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 200px;
    max-width: 100%;
    height: calc( 100% );
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-op-logo{
    width: 100%;
    padding: 0px 15px;
}

.exclusive-offer{
    border-radius: 20px;
    padding: 3px 20px;
    color: white;
    background-color: #ef1633!important;
    font-size: 16px;
    margin-top: 8px;
}

.bonus-highlight{
    color: #ef1633;
    font-size: 28px;
    font-weight: 800;
}

.pulse-animation{
    background-color: transparent;
    border-radius: 5px;
    animation: pulse 2.0s infinite;
}

@keyframes pulse{
    0%{
        background-color: transparent;
    }
    50%{
        background-color: gold;
    }
    100%{
        background-color: transparent;
    }
}

@media screen and ( min-width: 920px ) and ( max-width: 1120px ){
    .play-now{
        font-size: 12px!important;
    }
}


@media screen and ( max-width: 919.99px ){
    .img-wrapper{
        border-radius: 0;
    }

    .header-banner{
        height: 300px;
    }

    .header__img{
        width: 100%;
        height: 300px;
        display: block;
        object-fit: cover;
    }

    .featured{
        border-radius: 0;
    }

    article{
        max-width: 600px;
        height: auto;
    }

    .op-link{
        display: block!important;
        height: auto;
        text-align: center;
    }

    .op-link>*{
        width: 100%;
        margin-bottom: 20px;
    }

    .op-logo{
        margin-bottom: 0!important;
    }

    .bonus-banner{
        width: 150px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 10px;
    }

    .img-wrapper{
        width: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .img-op-logo{
        height: 80px;
        padding: 10px 0px;
    }

    li{
        padding-left: 15px!important;
        padding-right: 15px!important;
        position: relative;
    }
    
    li::before{
        left: 5px;
    }
}