
body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    color: #e0e0e0;
}

a {
    color: #00bcd4; 
    text-decoration: none;
}

a:hover {
    color: #4dd0e1;
}

.container {
    max-width: 1200px;
    width: 90%;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block; 
}

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


.btn-large, .btn {
    text-transform: none;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    font-weight: 500;
    box-shadow: none;
}

.accent-button {
    background-color: #00bcd4 !important; 
    color: #fff !important;
}

.accent-button:hover {
    background-color: #4dd0e1 !important;
}

.btn-flat {
    box-shadow: none;
    background-color: transparent;
    color: #00bcd4;
}

.btn-flat:hover {
    background-color: rgba(0, 188, 212, 0.1);
}


.dark-section {
    background-color: #262626;
}

.light-section {
    background-color: #1a1a1a;
}

.accent-bg {
    background-color: #ff5252; 
}

.accent-text {
    color: #00bcd4 !important;
}


.red-banner {
    background-color: #d32f2f;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1000;
}


#ageVerificationModal {
    max-width: 400px;
    border-radius: 8px;
    background-color: #333;
    color: #fff;
}

#ageVerificationModal h4 {
    color: #fff;
    margin-bottom: 20px;
}

#ageVerificationModal p {
    color: #e0e0e0;
    margin-bottom: 30px;
}

#ageVerificationModal .modal-footer {
    background-color: #333;
    border-top: none;
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
}

#ageVerificationModal .modal-footer .btn-flat {
    color: #fff;
    font-weight: 500;
}

#ageVerificationModal .modal-footer .waves-green {
    color: #4CAF50 !important;
}

#ageVerificationModal .modal-footer .waves-red {
    color: #F44336 !important;
}


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

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

.cookie-banner p {
    margin: 0;
    flex: 1;
    padding-right: 20px;
    color: #e0e0e0;
}

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

.cookie-banner .btn {
    background-color: #00bcd4;
    color: #fff;
    border-radius: 5px;
    box-shadow: none;
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
}

.cookie-banner .btn-flat {
    background-color: transparent;
    color: #00bcd4;
    box-shadow: none;
}


#cookieModal {
    max-width: 500px;
    border-radius: 8px;
    background-color: #333;
    color: #fff;
}

#cookieModal h4 {
    color: #fff;
    margin-bottom: 20px;
}

#cookieModal p {
    color: #e0e0e0;
}

#cookieModal .switch label input[type=checkbox]:checked + .lever {
    background-color: #00bcd4;
}

#cookieModal .switch label input[type=checkbox]:checked + .lever:after {
    background-color: #00bcd4;
}

#cookieModal .modal-footer {
    background-color: #333;
    border-top: none;
    padding: 10px 20px;
    text-align: right;
}

#cookieModal .modal-footer .btn-flat {
    color: #00bcd4 !important;
}

.cookie-policy-link {
    margin-top: 20px;
    text-align: right;
}


.hero-section {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-section nav .brand-logo {
    font-size: 2.2rem;
    font-weight: 700;
    padding-left: 0;
}

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

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}


.platform-card {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    height: 100%; 
    display: flex; 
}

.platform-card.horizontal .card-image {
    flex: 0 0 250px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a; 
    padding: 20px;
}

.platform-card.horizontal .card-image img {
    max-width: 100%;
    max-height: 120px; 
    width: auto;
    height: auto;
}

.platform-card.horizontal .card-stacked {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.platform-card.horizontal .card-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.platform-card.horizontal .platform-details {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.platform-card.horizontal .detail-item {
    margin-bottom: 10px;
}

.platform-card.horizontal .detail-item:last-child {
    margin-bottom: 0;
}

.platform-card.horizontal .detail-item strong {
    color: #00bcd4;
    min-width: 120px;
    display: inline-block;
}

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

.platform-card .star-rating {
    color: #ffb300; 
    font-size: 1.2rem;
}

.dark-card {
    background-color: #333;
}


#about-us h3 {
    color: #00bcd4;
    margin-top: 30px;
    margin-bottom: 15px;
}

#about-us ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

#about-us ul li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

#about-us ul li strong {
    color: #ffffff;
}


.dark-collection {
    background-color: #333;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.dark-collection-item {
    background-color: #333;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    display: flex;
    align-items: flex-start;
}

.dark-collection-item:last-child {
    border-bottom: none;
}

.dark-collection-item .material-icons {
    font-size: 3rem;
    margin-right: 20px;
    line-height: 1;
}

.dark-collection-item h5 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.dark-collection-item p {
    color: #1f1f1f;
    margin: 0;
}


.review-card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    background-color: #262626;
    color: #e0e0e0;
    height: 100%; 
    display: flex;
    flex-direction: column;
}

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

.review-card .card-title {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
}

.review-card .review-date {
    font-size: 0.9rem;
    color: #9e9e9e;
    margin-bottom: 15px;
}

.review-card .star-rating {
    color: #ffb300;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: block;
}

.review-card .review-feedback {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-card .review-feedback span {
    font-size: 0.9rem;
    color: #bdbdbd;
}

.review-card .feedback-btn {
    color: #00bcd4;
    padding: 0 10px;
    min-width: auto;
    height: 36px;
    line-height: 36px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-card .feedback-btn .material-icons {
    font-size: 1.5rem;
}


.disclaimer-section {
    padding: 40px 0;
    background-color: #ff5252; 
    border-top: 5px solid #e53935;
    border-bottom: 5px solid #e53935;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    margin-top: 40px;
}

.disclaimer-section .material-icons {
    font-size: 5rem;
    color: #ffe082; 
}

.disclaimer-section .disclaimer-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.disclaimer-section p {
    color: #fff;
    margin-bottom: 10px;
}

.disclaimer-section a {
    color: #fff;
    text-decoration: underline;
}

.disclaimer-section a:hover {
    color: #ffccbc;
}


.dark-footer {
    background-color: #121212;
    padding-top: 40px;
    color: #e0e0e0;
}

.dark-footer h5 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.dark-footer p {
    color: #bdbdbd;
    font-size: 0.95rem;
}

.dark-footer ul li a {
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.dark-footer ul li a:hover {
    color: #00bcd4;
}

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

.footer-copyright a {
    color: #00bcd4;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: #4dd0e1;
}

.footer-link {
    display: inline-block;
    margin-top: 10px;
    text-decoration: underline;
}

.footer-link:hover {
    text-decoration: none;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-logos img {
    max-width: 120px; 
    height: auto;
    display: block;
}


@media only screen and (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .platform-card.horizontal {
        flex-direction: column;
    }
    .platform-card.horizontal .card-image {
        flex: none;
        width: 100%;
        height: 150px;
        padding: 10px;
    }
    .platform-card.horizontal .card-image img {
        max-height: 100px;
    }
    .platform-card.horizontal .card-action {
        padding: 15px;
    }
    .disclaimer-section .material-icons {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    .disclaimer-section .disclaimer-title {
        font-size: 1.8rem;
    }
    .cookie-banner .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cookie-banner p {
        padding-right: 0;
    }
    .cookie-banner .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        flex: 1;
    }
}

@media only screen and (max-width: 600px) {
    .section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .platform-card.horizontal .card-title {
        font-size: 1.5rem;
    }
    .platform-card.horizontal .detail-item strong {
        min-width: 90px;
    }
    .footer-logos img {
        max-width: 100px;
    }
}
.complianceVaultNode {
    
    padding: 40px 20px; 
    max-width: 900px; 
    margin: 40px auto; 
    background-color: #262626; 
    border-radius: 8px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); 
    color: #e0e0e0; 
}

.complianceVaultNode h1 {
    
    font-size: 2.2rem;
    margin-top: 0; 
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 500;
}

.complianceVaultNode h2 {
    
    font-size: 1.8rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
}

.complianceVaultNode h3 {
    
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 500;
}

.complianceVaultNode h4 {
    
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
}

.complianceVaultNode h5 {
    
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
}

.complianceVaultNode p {
    
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
}

.complianceVaultNode ul {
    
    list-style-type: disc; 
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 25px; 
    color: #e0e0e0;
}

.complianceVaultNode li {
    
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.6rem; 
    color: #e0e0e0;
}


@media only screen and (max-width: 768px) {
    .complianceVaultNode {
        padding: 30px 15px; 
        margin: 30px auto;
    }

    .complianceVaultNode h1 {
        font-size: 1.8rem;
    }

    .complianceVaultNode h2 {
        font-size: 1.5rem;
    }

    .complianceVaultNode h3 {
        font-size: 1.3rem;
    }

    .complianceVaultNode h4 {
        font-size: 1.1rem;
    }

    .complianceVaultNode h5 {
        font-size: 1rem;
    }

    .complianceVaultNode p,
    .complianceVaultNode li {
        font-size: 0.95rem;
    }
}

.logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;

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

nav .brand-logo{
    position: relative;
}

.page-footer{
    .nav-wrapper.logo{
        justify-content: start;
    }
    
    .brand-logo.left{
        color: #fff;
        font-size: clamp(20px, 4vw, 26px);
    }
}

.card.platform-card.horizontal.dark-card{
    .detail-item{

        a{
            color: #00bcd4 !important;
            transition: 0.4s linear;

            &:hover{
                opacity: 0.7;
            }
        }
    }
}
nav{
    height: auto;
    margin-bottom: 30px;
}

@media (max-width: 767px){
    .valign-wrapper{
        flex-direction: column;
    }
}

@media (max-width: 991px){
    .card.horizontal .card-image{
        max-width: 100%;
    }

    .page-footer{
        text-align: center;

        .nav-wrapper.logo{
            justify-content: center;
        }
    }
}