:root {
    --accent-color: #ef2061;
    --gradient-start: #133f5a;
    --gradient-middle: #870f34;
    --gradient-end: #010011;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", serif;
    color: var(--text-light);
    background: #111 url('../content/bg.png') center;
    background-size: 400px;
    line-height: 1.6;
}

h1,h2,h3{
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
}

.q-ftitle{
    text-transform: uppercase;
}

.q-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px!important;
    padding-right: 15px!important;
}

.q-topline{
    position: absolute;
    left: 0;
    top: 25px;
    width: 100%;
}

.q-topline-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.q-logo {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;

}

.q-logo span {
    color: var(--accent-color);
}

.q-age-warning {
    font-size: 14px;
    color: #fff;
}


.q-hero {
    padding: 180px 20px 80px 20px;
    margin-top: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: url('../content/slide.jpg') center bottom no-repeat;
    background-size: cover;
}

.q-hero-title {
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
    max-width: 600px;
    width: 100%;
}

.q-hero-title span{
    color: #ef2061;
}

.q-hero-text {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
    color: #fff;
}

.q-button {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: white;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.q-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.q-button:hover::before {
    left: 100%;
}

.q-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.q-benefits {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}

.q-benefits-track {
    display: flex;
    animation: q-marquee 20s linear infinite;
    width: max-content;
}

.q-benefit-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 40px;
}

.q-benefit-icon {
    margin-right: 15px;
    font-size: 24px;
    color: var(--accent-color);
}

@keyframes q-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.q-rating-section {
    padding: 80px 0;
}

.q-section-title {
    font-size: 36px;
    font-style: italic;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.q-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.q-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.q-site-card {
    background: #1d1d1d;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.q-site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.q-site-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.q-site-logo {
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.q-site-logo img {
    max-height: 100%;
    max-width: 200px;
}

.q-site-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.q-stars {
    color: gold;
    margin-right: 10px;
}

.q-rating-value {
    font-weight: 700;
    margin-right: 5px;
}

.q-votes {
    color: var(--text-gray);
    font-size: 14px;
}

.q-site-bonus {
    margin-bottom: 20px;
}

.q-bonus-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.q-bonus-text {
    font-size: 14px;
    color: var(--text-gray);
}

.q-site-actions {
    display: flex;
    flex-direction: column;
}

.q-more-info {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.q-more-info:hover {
    color: var(--accent-color);
}


.q-faq-section {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.q-faq-title {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.q-faq-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.q-faq-text a{
    color: var(--text-gray);
}

.q-accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.q-accordion-header {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.q-accordion-icon {
    transition: transform 0.3s ease;
}

.q-accordion-item.active .q-accordion-icon {
    transform: rotate(180deg);
}

.q-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-gray);
}

.q-accordion-item.active .q-accordion-content {
    max-height: 300px;
    padding-bottom: 15px;
}


.q-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 0 20px;
}

.q-footer-disclaimer {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-gray);
}

.q-footer-disclaimer p{
    margin-bottom: 12px;
}

.q-footer-disclaimer a{
    color: #ccc;
}

.q-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.q-footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.q-footer-link:hover {
    color: var(--accent-color);
}

.q-help-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.q-help-service {
    display: flex;
    align-items: center;
}

.q-help-service a {
    display: flex;
    align-items: center;
}

.q-help-service img {
    max-width: 200px;
    width: auto;
    max-height: 50px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.q-help-service img:hover {
    opacity: 1;
}

.q-copyright {
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.q-cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 5px;
    max-width: 350px;
    z-index: 1000;
    display: none;
}

.q-cookie-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.q-cookie-buttons {
    display: flex;
    gap: 10px;
}

.q-cookie-button {
    padding: 5px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.q-cookie-accept {
    background: var(--accent-color);
    color: white;
}

.q-cookie-reject {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}

.qtext{
    padding: 120px 0 50px 0;
}

.qtext ul{
    padding-left: 22px;
    margin: 16px 0;
}

.qtext a{
    color: #ccc;
}

.qtext h2{
    margin: 19px 0 15px 0;
}













@media (max-width: 992px) {
    .q-faq-section {
        grid-template-columns: 1fr;
    }
    
    .q-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .q-topline {
        flex-direction: column;
        gap: 10px;
    }
    
    .q-benefit-item {
        padding: 0 20px;
    }
    
    .q-sites-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 767px){
    .q-faq-section{
        padding-top: 0;
    }
    .q-hero{
        background-position: left bottom;
        padding: 150px 0 60px 0;
    }
    .q-hero-text{
        font-size: 15px;
    }
    .q-age-warning{
        display: none;
    }
}