
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
}

.section {
    padding: 60px 0;
}

.grey.darken-4 {
    background-color: #212121 !important;
}

.grey.darken-5 {
    background-color: #1a1a1a !important;
}

.white-text {
    color: #e0e0e0 !important;
}

.primary-color {
    background-color: #ff5722 !important; 
}

.primary-color-text {
    color: #ff5722 !important;
}

.btn-large {
    border-radius: 8px;
    text-transform: none;
    font-weight: 600;
    height: 54px;
    line-height: 54px;
    padding: 0 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.btn-large:focus {
    background-color: #e64a19; 
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #f5f5f5;
    margin-top: 0;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 3rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.main-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #ff5722; 
    border-radius: 2px;
}


.top-banner {
    padding: 10px 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.top-banner p {
    margin: 0;
    line-height: 1.4;
}


nav {
    background-color: rgba(26, 26, 26, 0.9) !important; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.brand-logo {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: clamp(18px, 4vw, 26px);
    font-weight: 700;
    color: #e0e0e0;

    img{
        width: 50px;
        height: 50px;
        object-fit: contain;
    }
}

.logo-nav {
    height: 40px;
    margin-right: 10px;
}

nav ul li a {
    color: #e0e0e0;
    font-weight: 600;
    padding: 0 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff5722;
    background-color: transparent;
}


.hero-section {
    position: relative;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
}


.age-modal-custom {
    background-color: #212121;
    max-width: 500px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.age-modal-custom h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-modal-custom p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.logo-modal {
    height: 60px;
    margin-bottom: 20px;
}

.age-modal-footer-custom {
    background-color: transparent;
    padding: 20px 0 0 0;
    text-align: center;
    border-top: none;
}

.age-modal-footer-custom .btn-large {
    margin: 0 10px;
}


.platform-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.platform-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.platform-card .card-image img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    width: 100%;
    height: 140px;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.platform-card:hover .card-image img {
    transform: scale(1.03);
}

.platform-card .card-content {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.platform-card .card-title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #f5f5f5;
}

.platform-card .rating-stars {
    color: #ffb300; 
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.platform-card .rating-stars .bi-star-fill, .platform-card .rating-stars .bi-star-half {
    margin-right: 2px;
}

.platform-card .rating-value {
    color: #e0e0e0;
    font-weight: 600;
    margin-left: 5px;
}

.platform-card .platform-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #bdbdbd;
    flex-grow: 1;
}

.platform-card .license-info {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: #bdbdbd;
}

.platform-card .license-link {
    color: #ff5722; 
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.platform-card .license-link:hover {
    color: #e64a19;
    text-decoration: underline;
}

.platform-card .bonus-info {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.platform-card .bonus-info strong {
    color: #ffb300;
}

.platform-card .card-action {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    background-color: transparent;
}

.platform-card .play-button {
    width: 100%;
    background-color: #ff5722 !important;
}

.platform-card .play-button:hover {
    background-color: #e64a19 !important;
}


#about h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ff5722;
}

#about ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

#about ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

#about ul li i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}


.rating-breakdown-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rating-breakdown-card .card-content {
    padding: 20px;
}

.rating-breakdown-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #f5f5f5;
}

.rating-breakdown-card .card-title i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.progress-container {
    position: relative;
    height: 15px;
    background-color: #424242;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%; 
    background: linear-gradient(to right, #ff5722, #ffb300); 
    border-radius: 8px;
    transition: width 1s ease-out;
}

.progress-container.is-visible .progress-bar {
    width: var(--progress-width, 0%); 
}

.progress-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: #f5f5f5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}


.criteria-item {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: calc(100% - 30px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.criteria-item i {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.criteria-item h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #f5f5f5;
}

.criteria-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdbdbd;
}


.review-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.review-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.review-card .card-content {
    padding: 25px;
    flex-grow: 1;
}

.review-card .user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar-review {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #ff5722;
}

.user-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #f5f5f5;
}

.review-stars {
    color: #ffb300;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #bdbdbd;
}

.review-date {
    font-size: 0.8rem;
    color: #9e9e9e;
}


.faq-collapsible {
    border: none;
    box-shadow: none;
}

.faq-collapsible li {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-collapsible .collapsible-header {
    background-color: #2a2a2a;
    color: #f5f5f5;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: none;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-collapsible .collapsible-header i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.faq-collapsible .collapsible-header:hover {
    background-color: #3a3a3a;
}

.faq-collapsible .collapsible-body {
    background-color: #212121;
    border-bottom: none;
    padding: 20px;
    color: #bdbdbd;
    line-height: 1.6;
}


.disclaimer-block {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    border: 2px solid #ff5722;
    border-radius: 15px;
    padding: 40px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #e0e0e0;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #ff5722;
    margin-right: 20px;
}

.disclaimer-title {
    font-size: 2.2rem;
    color: #f5f5f5;
    margin: 0;
    line-height: 1.2;
}

.disclaimer-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #cccccc;
}

.disclaimer-contact {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff5722;
    margin-bottom: 10px;
}

.disclaimer-contact a {
    color: #ff5722;
    text-decoration: none;
    transition: color 0.3s ease;
}

.disclaimer-contact a:hover {
    color: #ff8a65;
    text-decoration: underline;
}


.page-footer {
    padding-top: 40px;
    margin-top: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.page-footer h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.page-footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdbdbd;
}

.page-footer ul li a {
    color: #bdbdbd;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.page-footer ul li a:hover {
    color: #ff5722;
}

.footer-link {
    color: #bdbdbd;
    text-decoration: none;
}

.footer-link:hover {
    color: #ff5722;
    text-decoration: underline;
}

.footer-disclaimer-text {
    font-size: 0.85rem;
    margin-top: 20px;
    color: #9e9e9e;
}

.footer-disclaimer-text a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 600;
}

.footer-disclaimer-text a:hover {
    text-decoration: underline;
}

.footer-logos-row {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.3s ease;
}

.footer-logo.age-restriction-icon {
    max-width: 50px;
    filter: none; 
}

.footer-copyright {
    padding: 20px 0;
    font-size: 0.9rem;
    color: #9e9e9e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none; 
}

.cookie-banner .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    flex-grow: 1;
    color: #e0e0e0;
}

.cookie-banner .cookie-link {
    color: #ff5722;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    text-decoration: none;
}


.cookie-modal-custom {
    background-color: #2a2a2a;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.cookie-modal-custom h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f5f5f5;
}

.cookie-modal-custom p {
    margin-bottom: 25px;
    color: #e0e0e0;
}

.cookie-modal-custom label span {
    color: #e0e0e0;
    font-size: 1rem;
}

.cookie-modal-custom .filled-in[type="checkbox"] + span:not(.lever):after {
    border: 2px solid #ff5722;
}

.cookie-modal-custom .filled-in[type="checkbox"]:checked + span:not(.lever):after {
    border: 2px solid #ff5722;
    background-color: #ff5722;
}

.cookie-modal-footer-custom {
    background-color: transparent;
    padding: 20px 0 0 0;
    text-align: right;
    border-top: none;
}

.cookie-modal-footer-custom .btn {
    margin-left: 10px;
    text-decoration: none;
}


.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-element[data-animation="fade-in-up"] {
    transform: translateY(20px);
}

.animated-element[data-animation="fade-in-left"] {
    transform: translateX(-20px);
}

.animated-element[data-animation="fade-in-right"] {
    transform: translateX(20px);
}

.animated-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-element.is-visible[data-animation="fade-in-left"] {
    transform: translateX(0);
}

.animated-element.is-visible[data-animation="fade-in-right"] {
    transform: translateX(0);
}


.animated-element[data-delay="100"] { transition-delay: 0.1s; }
.animated-element[data-delay="200"] { transition-delay: 0.2s; }
.animated-element[data-delay="300"] { transition-delay: 0.3s; }
.animated-element[data-delay="400"] { transition-delay: 0.4s; }
.animated-element[data-delay="500"] { transition-delay: 0.5s; }
.animated-element[data-delay="600"] { transition-delay: 0.6s; }


@media only screen and (max-width: 992px) {
    .main-heading {
        font-size: 2.5rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .platform-cards-grid .col.l4 {
        width: 50%;
    }
    .review-cards-grid .col.l4 {
        width: 50%;
    }
    .disclaimer-title {
        font-size: 1.8rem;
    }
    .disclaimer-icon {
        font-size: 2.5rem;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 600px) {
    .main-heading {
        font-size: 2rem;
    }
    .hero-section {
        height: 60vh;
        min-height: 350px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .logo-nav {
        height: 35px;
    }

    .platform-cards-grid .col.s12 {
        width: 100%;
    }
    .review-cards-grid .col.s12 {
        width: 100%;
    }
    .disclaimer-title {
        font-size: 1.5rem;
    }
    .disclaimer-icon {
        font-size: 2rem;
        margin-right: 10px;
    }
    .disclaimer-block {
        padding: 30px 20px;
        margin: 40px auto;
    }
    .page-footer .col.l6, .page-footer .col.l4 {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .page-footer .col.l4:last-child {
        margin-bottom: 0;
    }
    .footer-logos-container {
        gap: 15px;
    }
    .footer-logo {
        max-width: 100px;
    }
    .age-modal-footer-custom .btn-large {
        width: 100%;
        margin: 10px 0;
    }
}

.legalDomeBlock {
    padding: 60px 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    color: #e0e0e0; 
    font-family: 'Poppins', sans-serif; 
}


.legalDomeBlock h1 {
    font-size: 2.2rem; 
    line-height: 1.3; 
    margin-bottom: 25px; 
    color: #f5f5f5; 
    font-weight: 700; 
}


.legalDomeBlock h2 {
    font-size: 1.8rem; 
    line-height: 1.4; 
    margin-bottom: 20px; 
    color: #f5f5f5; 
    font-weight: 700; 
}


.legalDomeBlock h3 {
    font-size: 1.5rem; 
    line-height: 1.5; 
    margin-bottom: 18px; 
    color: #f5f5f5; 
    font-weight: 700; 
}


.legalDomeBlock h4 {
    font-size: 1.3rem; 
    line-height: 1.5; 
    margin-bottom: 15px; 
    color: #f5f5f5; 
    font-weight: 700; 
}


.legalDomeBlock h5 {
    font-size: 1.1rem; 
    line-height: 1.6; 
    margin-bottom: 12px; 
    color: #f5f5f5; 
    font-weight: 700; 
}


.legalDomeBlock p {
    font-size: 1rem; 
    line-height: 1.7; 
    margin-bottom: 15px; 
    color: #e0e0e0; 
}


.legalDomeBlock ul {
    list-style: disc; 
    padding-left: 25px; 
    margin-top: 15px; 
    margin-bottom: 15px; 
}


.legalDomeBlock li {
    font-size: 1rem; 
    line-height: 1.7; 
    margin-bottom: 10px; 
    color: #e0e0e0; 
}


@media only screen and (max-width: 600px) {
    .legalDomeBlock {
        padding: 40px 15px; 
    }
    .legalDomeBlock h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .legalDomeBlock h2 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }
    .legalDomeBlock h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .legalDomeBlock h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .legalDomeBlock h5 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    .legalDomeBlock p,
    .legalDomeBlock li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .legalDomeBlock ul {
        padding-left: 20px;
    }
}

#age-modal{
    max-height: 100%;

    img{
        width: 80px;
        height: 80px;
        object-fit: contain;
    }
}

nav a.sidenav-trigger,
nav{
    line-height: normal;
    height: auto;
}

nav .brand-logo{
    position: relative;
}

.nav-wrapper.container{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  width: 100% !important;
}

.burger-icon {
  display: inline-block;
  cursor: pointer;
  padding: 8px;
}

.burger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

.sidenav-trigger.right{
    display: flex;
    align-items: center;
    justify-content: center;
}


.sidenav{
    background-color: #1a1a1a;
    z-index: 99999;
}

.sidenav li>a{
    color: #fff;
}

.sidenav-close-btn {
  text-align: right;
  padding: 10px 20px;
}

.close-icon {
  font-size: 28px;
  color: #ffffff; 
  cursor: pointer;
}

.container{
    width: 100% !important;
    padding: 0 16px;
}

.rating-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.rating-card {
  background-color: #1c1c1c;
  color: #fff;
  padding: 20px;
  border-radius: 12px;

  .card-title .bi{
font-size: 26px;
margin-left: 10px;
  }
}
.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  height: 20px;
}
.progress-bar {
  flex-grow: 1;
  height: 30px;
  background: linear-gradient(to right, #ff6600, #ff9900);
  border-radius: 5px;
  position: relative;
}
.progress-text {
  white-space: nowrap;
}

@media only screen and (min-width: 601px){

    .row .col.m6{
        width: calc(50% - 30px);
        margin-left: 0;
    }
}

@media only screen and (min-width: 993px) {
  .row .col.l4 {
    width: calc(33.3333333333% - 30px);
  }
}

@media (max-width: 767px){
    #about ul li{
        display: flex;
        flex-direction: column;
    }
}

.row .col{
    padding: 0;
}

#criteria{
    .row{
        gap: 30px;
        display: flex;
        flex-wrap: wrap;
    }

    .criteria-item{
        margin-bottom: 0;
        height: 100%;
    }
}

.brand-logo{
    display: flex !important;
    align-items: center;

    img{
        width: 40px;
        height: 40px;
    }
}
.brand-logo span{
    font-size: clamp(18px, 4vw, 26px) !important;
}

.sidenav-trigger.right.hide-on-large-only{
    margin: 0 !important;
}