:root {
    --accent-color: #010101;
    --background-dark: #000;
    --block-background: #060607;
    --text-light: #fff;
    --text-gray: #ccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
}

h1,h2,h3{
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.topLine {
    background-color: var(--accent-color);
    padding: 10px 0;
}

.topLine_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "Poppins", cursive;
    color: var(--text-light);
}

.logo span {
    color: #9f8419;
}

.topLine_menu {
    display: flex;
    list-style: none;
}

.topLine_menu li {
    margin-left: 20px;
}

.topLine_menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.topLine_menu a:hover {
    color: var(--text-light);
}


.heroSection {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/back.png') no-repeat center center/cover;
}

.heroContent {
    max-width: 600px;
}

.heroSubtitle {
    font-size: 18px;
    color: #9f8419;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.heroTitle {
    font-family: "Poppins", cursive;
    font-size: 58px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text-light);
}

.heroText {
    font-size: 16px;
    margin-bottom: 30px;
    color: #f1f1f1;
    line-height: 1.6;
}

.heroButton {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #484848;
}

.heroButton: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: 0.5s;
}

.heroButton:hover:before {
    left: 100%;
}

.heroButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


.ratingSection {
    padding: 80px 0;
}

.sectionTitle {
    font-family: 'Satisfy', cursive;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.ratingGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .ratingGrid {
        grid-template-columns: 1fr;
    }
}

.ratingCard {
    background-color: var(--block-background);
    border-radius: 8px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s;
}

.ratingCard:hover {
    transform: translateY(-5px);
}

.cardNumber {
    position: absolute;
    top: px;
    left: px;
    background-color: #9f8419;
    color: #ccc;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.cardLogo {
    margin-bottom: 15px;
    height: 100px;
    display: flex;
    align-items: center;
}

.cardLogo img {
    max-height: 100%;
    max-width: 100%;
}

.cardBonus {
    margin-bottom: 15px;
}

.bonusTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.bonusText {
    font-size: 14px;
    color: var(--text-gray);
}

.cardRating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #9f8419;
    margin-right: 10px;
}

.ratingValue {
    font-weight: 700;
    margin-right: 10px;
    font-size: 18px;
}

.votes {
    font-size: 14px;
    color: var(--text-gray);
}

.ratingFlex{
    display: flex;
    align-items: center;
    gap: 20px;
}

.cardButton {
    display: block;
    background-color: var(--accent-color);
    color: var(--text-light);
    text-align: center;
    padding: 10px;

    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #4d4111;
}

.cardButton: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: 0.5s;
}

.cardButton:hover:before {
    left: 100%;
}

.ageWarning {
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
}


.textSection {
    padding: 80px 0;
    background-color: var(--block-background);
    font-size: 14px;
}

.textSection h3{
    margin-bottom: 12px;
}

.textSection a{
    color: var(--text-gray);
}

.textTitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.textParagraph {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.textList {
    list-style-position: inside;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.textList li {
    margin-bottom: 5px;
    color: #4d4111;
}


.textList li span{
    color: var(--text-gray);
}

.footer {
    background-color: var(--accent-color);
    padding: 40px 0 20px;
}

.footerLinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footerLinks a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
}

.footerLinks a:hover {
    color: var(--text-light);
}

.disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 990px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer p{
    margin-bottom: 12px;
}

.disclaimer a{
    color: var(--text-gray);
}

.hServices {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.hServices a {
    display: inline-block;
    transition: opacity 0.3s;
}

.hServices a:hover {
    opacity: 0.8;
}

.hServices img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.lgtext{
    padding: 55px 0;
}

.lgtext ul{
    padding-left: 20px;
    margin: 18px 0;
}

.lgtext a{
    color: #fff;
}

.lgtext h2, .lgtext h3{
    margin: 18px 0 14px 0;
}

@media(max-width: 767px){
    .topLine_menu{
        display: none;
    }
    .heroTitle{
        font-size: 42px;
    }
    .heroSection{
        padding: 60px 0;
    }
}