:root {
    --primary-color: #ff3d71;
    --secondary-color: #ff8a00;
    --accent-color: #00e5ff;
    --dark-bg: #0f0f1a;
    --darker-bg: #070710;
    --text-color: #ffffff;
    --text-secondary: #b8b8c5;
    --table-bg: rgba(15, 15, 26, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --glow-effect: 0 0 20px rgba(255, 61, 113, 0.3);
}

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

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 61, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

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

/* Секция 1: Главный экран */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 24px;
    margin-bottom: 8px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--glow-effect);
    animation: fadeInDown 1s ease-out;
    letter-spacing: 2px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 14px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease-out;
    text-align: left;

}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat-item {
    background: var(--table-bg);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
    text-align: center;
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Секция 2: Рейтинг казино */
.rating {
    padding: 20px 0;
}

.rating h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 22px;
    color: var(--text-color);
    text-shadow: var(--glow-effect);
    background: var(--table-bg);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
}

.casino-table {
    background: var(--table-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: var(--accent-color);
    text-align: left;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 120px;
}

.casino-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}
.game-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.casino-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.casino-name {
    display: none;
}

.rating-stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.license-badge {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.bonus-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bonus-amount {
    color: var(--primary-color);
    font-weight: 600;
}

.bonus-spins {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.play-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 61, 113, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 61, 113, 0.4);
}

@media (max-width: 768px) {
    .play-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .play-btn {
        padding: 6px 15px;
        font-size: 0.7rem;
    }
}

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

.bonuses h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 22px;
    color: var(--text-color);
    text-shadow: var(--glow-effect);
    background: var(--table-bg);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
}

.bonus-content {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-type {
    background: var(--table-bg);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.bonus-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-type h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.bonus-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.bonus-features span {
    background: rgba(255, 61, 113, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Анимации */
@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);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .casino-table {
        overflow-x: auto;
        width: 100%;
    }

    
    table {
        min-width: 100%;
    }
    
    th, td {
        padding: 5px 2px;
        white-space: nowrap;
    }
    
    th:first-child,
    td:first-child {
        padding-left: 5px;
    }
    
    th:last-child,
    td:last-child {
        padding-right: 5px;
    }
    
    .bonus-types {
        grid-template-columns: 1fr;
    }

    /* Мобильная адаптация таблицы */
    .casino-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        min-width: 85px;
    }

    .casino-logo {
        width: 60px;
        height: 60px;
    }
    .game-logo {
        width: 200px;
        height: 200px;
    }

    .casino-details {
        margin-left: 0;
    }

    .casino-name {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .rating-stars {
        font-size: 0.7rem;
    }

    .license-badge {
        font-size: 0.65rem;
        padding: 2px 4px;
        white-space: nowrap;
    }

    .bonus-info {
        font-size: 0.75rem;
        min-width: 100px;
    }

    .bonus-amount {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .bonus-spins {
        font-size: 0.65rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-text {
        font-size: 1rem;

    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    th, td {
        padding: 12px 8px;
    }

    /* Дополнительные стили для очень маленьких экранов */
    .casino-info {
        min-width: 75px;
    }

    .casino-logo {
        width: 50px;
        height: 50px;
    }
    .game-logo {
        width: 200px;
        height: 200px;
    }

    .casino-name {
        font-size: 0.7rem;
    }

    .rating-stars {
        font-size: 0.6rem;
    }

    .license-badge {
        font-size: 0.55rem;
        padding: 1px 3px;
    }

    .bonus-info {
        font-size: 0.65rem;
        min-width: 90px;
    }

    .bonus-amount {
        font-size: 0.65rem;
    }

    .bonus-spins {
        font-size: 0.55rem;
    }

    /* Уменьшенная таблица */
    .casino-table {
        overflow-x: auto;
        width: 100%;
    }
    
    table {
        min-width: 100%;
    }
    
    th, td {
        padding: 4px 1px;
        white-space: nowrap;
    }
    
    th:first-child,
    td:first-child {
        padding-left: 4px;
    }
    
    th:last-child,
    td:last-child {
        padding-right: 4px;
    }
}

.info-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--table-bg);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
}

.info-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 22px;
    color: var(--text-color);
    text-shadow: var(--glow-effect);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 15px;
    border-radius: 15px;
    background-color: var(--table-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
}

.info-section h3 {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    margin-bottom: 25px;
}

.info-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

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

.info-section p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
}

.info-section strong {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .info-section {
        padding: 20px;
        margin-top: 40px;
    }
    
    .info-section h3 {
        font-size: 20px;
    }
}

footer {
    background: var(--darker-bg);
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.center {
    text-align: center;
}

.copy {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    footer {
        padding: 15px 0;
        margin-top: 40px;
    }
    
    .copy {
        font-size: 14px;
    }
}

.bonus-info-section {
    padding: 60px 0;
    background: var(--table-bg);
    margin-top: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
}

.bonus-info-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-info-section p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
}

.bonus-info-section h3 {
    color: var(--accent-color);
    font-size: 20px;
    margin: 30px 0 20px;
    text-shadow: var(--glow-effect);
}

.bonus-info-section .info-list {
    margin-bottom: 30px;
}

.bonus-info-section .info-list li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

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

@media (max-width: 768px) {
    .bonus-info-section {
        padding: 40px 0;
    }
    
    .bonus-info-section h3 {
        font-size: 20px;
    }
    
    .bonus-info-section p {
        font-size: 14px;
    }
}

.site-header {
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.site-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 61, 113, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 61, 113, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 61, 113, 0.8)) 
                drop-shadow(0 0 30px rgba(0, 229, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 61, 113, 0.5));
    }
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 180px;
    }
    
    .logo-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        max-width: 180px;
    }
    
    .logo-container {
        padding: 0px;
    }
}

.casino-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.chip, .slot, .dice {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* Анимация фишек */
.chip-1 {
    top: 10%;
    left: 5%;
    animation: floatChip1 15s ease-in-out infinite;
}

.chip-2 {
    top: 30%;
    right: 10%;
    animation: floatChip2 18s ease-in-out infinite;
}

.chip-3 {
    bottom: 20%;
    left: 15%;
    animation: floatChip3 20s ease-in-out infinite;
}

.chip-4 {
    bottom: 40%;
    right: 5%;
    animation: floatChip4 16s ease-in-out infinite;
}

/* Анимация слотов */
.slot-1 {
    top: 15%;
    left: 20%;
    animation: floatSlot1 25s ease-in-out infinite;
}

.slot-2 {
    top: 50%;
    right: 20%;
    animation: floatSlot2 22s ease-in-out infinite;
}

.slot-3 {
    bottom: 15%;
    left: 30%;
    animation: floatSlot3 28s ease-in-out infinite;
}

/* Анимация костей */
.dice-1 {
    top: 25%;
    right: 30%;
    animation: floatDice1 17s ease-in-out infinite;
}

.dice-2 {
    bottom: 30%;
    right: 15%;
    animation: floatDice2 19s ease-in-out infinite;
}

/* Ключевые кадры анимации */
@keyframes floatChip1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 30px) rotate(90deg); }
    50% { transform: translate(100px, 0) rotate(180deg); }
    75% { transform: translate(50px, -30px) rotate(270deg); }
}

@keyframes floatChip2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-40px, 40px) rotate(-90deg); }
    50% { transform: translate(-80px, 0) rotate(-180deg); }
    75% { transform: translate(-40px, -40px) rotate(-270deg); }
}

@keyframes floatChip3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(60px, -20px) rotate(120deg); }
    50% { transform: translate(120px, 0) rotate(240deg); }
    75% { transform: translate(60px, 20px) rotate(360deg); }
}

@keyframes floatChip4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-50px, -30px) rotate(-120deg); }
    50% { transform: translate(-100px, 0) rotate(-240deg); }
    75% { transform: translate(-50px, 30px) rotate(-360deg); }
}

@keyframes floatSlot1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.2); }
}

@keyframes floatSlot2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, -40px) scale(1.1); }
}

@keyframes floatSlot3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -60px) scale(1.3); }
}

@keyframes floatDice1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, 40px) rotate(90deg); }
    50% { transform: translate(0, 80px) rotate(180deg); }
    75% { transform: translate(-40px, 40px) rotate(270deg); }
}

@keyframes floatDice2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-30px, -30px) rotate(-90deg); }
    50% { transform: translate(0, -60px) rotate(-180deg); }
    75% { transform: translate(30px, -30px) rotate(-270deg); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .chip, .slot, .dice {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .chip, .slot, .dice {
        font-size: 1.2rem;
    }
}

.play-now-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 14px 0 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 61, 113, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Стили для кнопок в таблице */
.casino-table .play-now-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    margin: 0;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .play-now-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .casino-table .play-now-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .play-now-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .casino-table .play-now-btn {
        padding: 6px 15px;
        font-size: 0.7rem;
    }
}

/* Анимированные элементы */
.chip-5 {
    top: 65%;
    left: 85%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 0.5s;
}

.chip-6 {
    top: 25%;
    left: 75%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

.chip-7 {
    top: 45%;
    left: 15%;
    animation: float 9s ease-in-out infinite;
    animation-delay: 2.5s;
}

.chip-8 {
    top: 85%;
    left: 35%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 3.5s;
}

.slot-4 {
    top: 70%;
    left: 60%;
    animation: float 10s ease-in-out infinite;
    animation-delay: 1s;
}

.slot-5 {
    top: 30%;
    left: 40%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.slot-6 {
    top: 50%;
    left: 80%;
    animation: float 9s ease-in-out infinite;
    animation-delay: 3s;
}

.dice-3 {
    top: 75%;
    left: 25%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

.dice-4 {
    top: 35%;
    left: 65%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2.5s;
} 