@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

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

header {
    background: rgba(21, 23, 31, 0.10);
    backdrop-filter: blur(6px);
}

.hero-section {
    background: url('../images/hero-section.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #15171F;
}

h1 {
    @apply bg-primary
}

.tiles {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    overflow: hidden;
    height: fit-content;
    min-height: 166px;
}

.tiles h4 {
    overflow: hidden;
    color: #E9EAEB;
    text-overflow: ellipsis;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.tiles h5 {
    overflow: hidden;
    color: #FCFCFC;
    text-overflow: ellipsis;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.tiles p {
    color: #FCFCFC;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.tiles .gradient {
    width: 112px;
    height: 112px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: rgba(4, 121, 191, 0.28);
    filter: blur(40px);
}

.tile-odd {
    border: 1px solid rgba(35, 38, 51, 0.20);
    background: linear-gradient(180deg, #1C1E28 0%, rgba(28, 30, 40, 0.00) 100%);
    position: relative;
}

.tile-odd h5 {
    color: #047BC5;
}

.tile-even {
    background: linear-gradient(121deg, #3187EE 5.42%, #0A4284 96.73%);
}

.tile-1 {
    border-radius: 24px 0px 0px 24px;
}

.tile-2 {
    border-radius: 24px;
}

.tile-3 {
    border-radius: 0px 24px 24px 0px;
}

.tile-wrapper::before {
    position: relative;
    left: 156px;
    bottom: 150px;
    height: 256px;
    background: rgba(4, 121, 191, 0.16);
    filter: blur(159.83604431152344px);
}



@media screen and (min-width: 1024px) {
    .tiles {
        flex: 1 0 0;
    }

    .tiles p {
        margin-right: 3rem;
    }
}

@media screen and (max-width: 1023px) {
    .tiles {
        border-radius: 24px !important;
    }
}

.custom-list {
    list-style: none; /* Remove default bullet points */
  }
  
  .custom-list li {
    position: relative;
    padding-left: 28px; /* Space for the icon */
    margin-bottom: 0.65rem;
  }
  
  .custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url('../images/game-icon.svg');
    background-size: cover;
  }