:root {
    --primary-color: #00bcd4;
    --secondary-color: #006064;
    --text-color: #ffffff;
    --background-gradient: linear-gradient(135deg, #0a0f2e 0%, #001a1a 100%);
    --table-bg: rgba(0, 0, 0, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
    --section-bg: rgba(0, 0, 0, 0.2);
    --gold-color: #ffd700;
    --section-spacing: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-gradient);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хедер и логотип */
header {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.logo {
    text-align: center;
    margin-bottom: 10px;
    animation: none;
}

.logo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
}

.logo a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

.logo img {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.5));
}

.logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 188, 212, 0.8));
}

@keyframes logoPulse {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(0.52);
    }
    100% {
        transform: scale(0.5);
    }
}

/* Адаптивность для логотипа */
@media (max-width: 768px) {
    .logo {
        transform: scale(0.4);
        margin-bottom: 5px;
    }
    
    .logo::before {
        width: 150px;
        height: 150px;
    }
    
    .logo::after {
        width: 120px;
    }
    
    .logo img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .logo {
        transform: scale(0.35);
        margin-bottom: 0;
    }
    
    .logo::before {
        width: 120px;
        height: 120px;
    }
    
    .logo::after {
        width: 100px;
    }
    
    .logo img {
        max-width: 200px;
    }
}

/* Секция 1: Главный экран */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

/* Анимированные элементы фона */
.hero .background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero .background-elements .element {
    position: absolute;
    opacity: 0.3;
    filter: blur(1px);
}

.hero .background-elements .chip {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #fff 0%, var(--gold-color) 30%, #b8860b 70%, #8b4513 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.8),
        0 0 0 2px #8b4513;
    position: relative;
    animation: floatChip 15s infinite linear;
}

.hero .background-elements .chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
}

.hero .background-elements .chip::after {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8b4513;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero .background-elements .slot {
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    border: 2px solid #444;
    border-radius: 5px;
    position: relative;
    animation: floatSlot 20s infinite linear;
    box-shadow: 
        0 0 10px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero .background-elements .slot::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(135deg, #ff0000 0%, #ff3333 50%, #ff0000 100%);
    border-radius: 3px;
    animation: slotGlow 2s infinite;
}

.hero .background-elements .slot::after {
    content: '7';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes slotGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
}

@keyframes floatChip {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(200px, 0) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(100px, -50px) rotate(270deg) scale(1.1);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

@keyframes floatSlot {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-100px, 50px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-200px, 0) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(-100px, -50px) rotate(270deg) scale(1.1);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

/* Адаптивность для анимированных элементов */
@media (max-width: 768px) {
    .hero .background-elements .chip {
        width: 40px;
        height: 40px;
    }
    
    .hero .background-elements .chip::before {
        width: 25px;
        height: 25px;
    }
    
    .hero .background-elements .chip::after {
        font-size: 20px;
    }
    
    .hero .background-elements .slot {
        width: 30px;
        height: 45px;
    }
    
    .hero .background-elements .slot::after {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero .background-elements .chip {
        width: 30px;
        height: 30px;
    }
    
    .hero .background-elements .chip::before {
        width: 20px;
        height: 20px;
    }
    
    .hero .background-elements .chip::after {
        font-size: 16px;
    }
    
    .hero .background-elements .slot {
        width: 25px;
        height: 35px;
    }
    
    .hero .background-elements .slot::after {
        font-size: 16px;
    }
}

.hero h1 {
    font-size: 22px;
    margin-bottom: 50px;
    margin-top: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--gold-color) 30%, var(--primary-color) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
    position: relative;
    padding: 10px 0;
    animation: titleGlow 3s infinite;
}

.hero h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
    }
    50% {
        text-shadow: 0 0 50px rgba(0, 188, 212, 0.6);
    }
    100% {
        text-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
    }
}

/* Адаптивность для заголовка */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 30px;
        padding: 5px 0;
    }
    
    .hero h1::before {
        width: 200px;
        height: 200px;
    }
    
    .hero h1::after {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 22px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .hero h1::before {
        width: 150px;
        height: 150px;
    }
    
    .hero h1::after {
        width: 120px;
    }
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    animation: none;
    position: relative;
    padding: 30px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.hero-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 14px;
}

.hero-text ul {
    list-style: none;
    margin-top: 30px;
    display: inline-block;
    text-align: left;
}

.hero-text li {
    margin: 10px 0;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
}

.hero-text li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Адаптивность для hero секции */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 5px 0;
    }
    
    .hero-text {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
    }
    
    .hero-text {
        padding: 20px;
    }
    
    .hero-text li {
        font-size: 14px;
    }
}

/* Секция 2: Рейтинг казино */
.rating {
    padding: 40px 0;
    background: var(--section-bg);
    position: relative;
    margin-top: -1px;
}

.rating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.rating h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 40px;
    animation: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.rating h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.casino-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.casino-logo {
    flex: 1;
}

.casino-logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.casino-card:hover .casino-logo img {
    transform: scale(1.05);
}

.casino-rating {
    text-align: right;
    position: relative;
}

.rating-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold-color);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.rating-stars {
    color: var(--gold-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.casino-info {
    margin: 20px 0;
    position: relative;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
}

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

.label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.value {
    color: var(--gold-color);
    font-weight: 600;
    font-size: 16px;
}

.casino-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.play-btn {
    flex: 1;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.play-btn:hover::before {
    transform: translateX(100%);
}

.play-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.review-btn {
    flex: 1;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.review-btn:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: scale(1.05);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Адаптивность для рейтинга */
@media (max-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .casino-logo img {
        max-width: 130px;
    }
    
    .rating-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .rating {
        padding: 40px 0;
    }
    
    .rating h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
    
    .casino-logo img {
        max-width: 120px;
    }
    
    .rating-value {
        font-size: 2rem;
    }
    
    .rating-stars {
        font-size: 1.1rem;
    }
    
    .info-item {
        padding: 10px 0;
    }
    
    .label {
        font-size: 14px;
    }
    
    .value {
        font-size: 16px;
    }
    
    .play-btn,
    .review-btn {
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .rating {
        padding: 20px 0;
    }
    
    .rating h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .casino-card {
        padding: 15px;
    }
    
    .casino-logo img {
        max-width: 100px;
    }
    
    .rating-value {
        font-size: 1.8rem;
    }
    
    .rating-stars {
        font-size: 1rem;
    }
    
    .info-item {
        padding: 8px 0;
    }
    
    .label {
        font-size: 14px;
    }
    
    .value {
        font-size: 16px;
    }
    
    .play-btn,
    .review-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Секция 3: Бонусы */
.bonuses {
    padding: 40px 0;
    position: relative;
}

.bonuses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.bonuses h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 40px;
    animation: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.bonuses h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.bonus-content {
    max-width: 800px;
    margin: 0 auto;
    animation: none;
    font-size: 14px;
}

.bonus-content h3 {
    margin: 20px 0 10px;
    color: var(--primary-color);
    font-size: 22px;
}

.bonus-content ul {
    list-style: none;
    margin: 20px 0;
}

.bonus-content li {
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}

.bonus-content li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Классы для анимаций */
.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-left {
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
}

.animate-fade-right {
    opacity: 0;
    animation: fadeInRight 1s ease-out forwards;
}

.animate-scale {
    opacity: 0;
    animation: scaleIn 1s ease-out forwards;
}

/* Задержки для анимаций */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Адаптивность для бонусов */
@media (max-width: 768px) {
    .bonuses {
        padding: 40px 0;
    }
    
    .bonuses h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .bonuses {
        padding: 20px 0;
    }
    
    .bonuses h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* Футер */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    margin-top: 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.center {
    text-align: center;
}

.copy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Адаптивность для футера */
@media (max-width: 768px) {
    footer {
        padding: 15px 0;
        margin-top: 40px;
    }
    
    .copy {
        font-size: 0.8rem;
    }
}

/* Секция 2: Что стоит учитывать */
.info-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 30px;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.info-section h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--gold-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.info-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.info-section ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
}

.info-section li {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.info-section li:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.4);
}

.info-section li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Адаптивность для информационной секции */
@media (max-width: 768px) {
    .info-section {
        padding: 40px 0;
    }
    
    .info-section h2 {
        font-size: 22px;
    }
    
    .info-section ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 30px 0;
    }
    
    .info-section h2 {
        font-size: 22px;
    }
    
    .info-section li {
        padding: 15px;
    }
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1em;
    line-height: 1.3;
}

.rating-description {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.rating-description p {
    margin-bottom: 20px;
    text-align: justify;
}

.rating-description p:has(+ ul) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    font-size: 16px;
}

.rating-description ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 30px;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-description li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    text-align: left;
    color: var(--primary-color);
}

.rating-description li::before {
    content: "•";
    color: var(--gold-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Адаптивность для описания */
@media (max-width: 768px) {
    .rating-description {
        max-width: 500px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .rating-description p:has(+ ul) {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .rating-description ul {
        padding: 15px;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .rating-description {
        max-width: 100%;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .rating-description p:has(+ ul) {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .rating-description ul {
        padding: 12px;
        margin: 12px 0;
    }
    
    .rating-description li {
        margin-bottom: 8px;
    }
}

.info-section-description {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section-description p {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
}

.info-section-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Адаптивность для описания */
@media (max-width: 768px) {
    .info-section-description {
        margin: 30px auto 0;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .info-section-description {
        margin: 20px auto 0;
        padding: 15px;
    }
}

.hero-play-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.hero-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.hero-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.5);
    background: var(--secondary-color);
}

.hero-play-btn:hover::before {
    transform: translateX(100%);
}

/* Адаптивность для кнопки */
@media (max-width: 768px) {
    .hero-play-btn {
        padding: 12px 35px;
        font-size: 14px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .hero-play-btn {
        padding: 10px 30px;
        font-size: 14px;
        margin-top: 20px;
    }
} 