
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden; 
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}


a {
    color: #dc3545;
    text-decoration: none;
}

a:hover {
    color: #c82333;
    text-decoration: underline;
}


.btn {
    text-decoration: none !important; 
    transition: all 0.3s ease;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    color: #000 !important;
    background-color: #f8f9fa;
}


.top-bar {
    background-color: #dc3545; 
    color: #fff;
    font-size: 0.85rem;
}


.navbar {
    background-color: #000 !important; 
    border-bottom: 1px solid #333;
}

.navbar-brand .logo-img {
    height: 35px; 
    width: auto;
}

.navbar-brand{
    font-size: clamp(18px, 4vw, 26px) !important;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #dc3545; 
    transform: translateY(-2px);
}


.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
    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.7); 
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.animate__animated {
    visibility: hidden;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__zoomIn {
    animation-name: zoomIn;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}


.platform-card {
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.platform-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
}

.platform-card .platform-logo {
    width: 150px; 
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a; 
    padding: 10px;
    border-radius: 8px;
    flex-shrink: 0;
}

.platform-card .platform-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.platform-card .rating .fas.fa-star,
.platform-card .rating .fas.fa-star-half-alt {
    color: #ffc107; 
}

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

    &:hover{
        color: #c82333 !important;
    }
}

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


@media (max-width: 767.98px) {
    .platform-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .platform-card .platform-logo {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
}


.method-item {
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(220, 53, 69, 0.15);
}

.method-item h4 {
    color: #dc3545; 
}

.badge {
    font-size: 0.85rem;
    padding: 0.5em 0.75em;
}

.badge-authority {
    background-color: #dc3545;
    color: #fff;
}


.table-dark th,
.table-dark td {
    border-color: #333;
}

.table-dark.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark thead th {
    color: #dc3545;
    font-weight: 700;
}


.review-card {
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(220, 53, 69, 0.15);
}

.review-card .avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #dc3545;
}

.review-card .text-warning .fas.fa-star,
.review-card .text-warning .fas.fa-star-half-alt {
    color: #ffc107;
}

.report-btn {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
}


#disclaimer-block {
    background-color: #1a1a1a; 
    border-top: 2px solid #dc3545;
    border-bottom: 2px solid #dc3545;
}

.disclaimer-content {
    background: linear-gradient(135deg, #222, #111); 
    border: 1px solid #dc3545;
    padding: 2.5rem !important;
}

.disclaimer-content h3 {
    color: #dc3545;
}

.disclaimer-content .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.disclaimer-content .btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}


.footer {
    background-color: #000;
    border-top: 1px solid #333;
}

.footer-links li a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #dc3545;
    text-decoration: underline;
}

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

.footer-logo-item {
    flex-shrink: 0;
    width: 120px; 
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-item img {
    max-width: 100%;
    max-height: 50px; 
    object-fit: contain;
}


#ageVerificationModal .modal-content {
    border: 2px solid #dc3545;
    background-color: #1a1a1a; 
}

#ageVerificationModal .modal-title {
    color: #dc3545;
}

#ageVerificationModal .age-icon {
    position: relative;
    display: inline-block;
}

#ageVerificationModal .age-icon .fa-plus {
    position: absolute;
    top: 0px;
    right: -10px;
    font-size: 1.5rem; 
}


.cookie-banner {
    background-color: #1a1a1a;
    border-top: 2px solid #dc3545;
    z-index: 1050; 
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .cookie-banner .container {
        flex-direction: column;
    }
    .cookie-banner p {
        margin-bottom: 1rem !important;
    }
}


.smooth-scroll {
    scroll-behavior: smooth;
}


@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .btn-lg {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .platform-card .platform-logo {
        width: 100px;
        height: 100px;
    }
    .footer-logo-item {
        width: 90px;
    }
}

.infoGuardBlock {
    padding: 4rem 1rem; 
    max-width: 1200px; 
    margin: 0 auto; 
}


.infoGuardBlock h1 {
    font-size: 2.2rem; 
    margin-bottom: 1.5rem; 
    color: #dc3545; 
    line-height: 1.2; 
}


.infoGuardBlock h2 {
    font-size: 1.8rem; 
    margin-bottom: 1.2rem; 
    color: #dc3545; 
    line-height: 1.3;
}


.infoGuardBlock h3 {
    font-size: 1.5rem; 
    margin-bottom: 1rem; 
    color: #fff; 
    line-height: 1.4;
}


.infoGuardBlock h4 {
    font-size: 1.3rem; 
    margin-bottom: 0.8rem; 
    color: #fff; 
    line-height: 1.5;
}


.infoGuardBlock h5 {
    font-size: 1.1rem; 
    margin-bottom: 0.6rem; 
    color: #fff; 
    line-height: 1.6;
}


.infoGuardBlock p {
    font-size: 1rem; 
    margin-bottom: 1rem; 
    line-height: 1.7; 
    color: #fff; 
}


.infoGuardBlock ul {
    margin-bottom: 1rem; 
    padding-left: 1.5rem; 
    list-style-type: disc; 
    color: #fff; 
}


.infoGuardBlock li {
    font-size: 1rem; 
    margin-bottom: 0.5rem; 
    line-height: 1.6; 
}


.infoGuardBlock ul li:last-child {
    margin-bottom: 0;
}


textarea.form-control::placeholder{
  color: #66788a;
}

.report-btn{
    margin: 10px 0 15px;
    float: right;
}