/* casino-arkada.css - ТОЧНАЯ КОПИЯ СТИЛЕЙ casino-mellstroy */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0f0a1e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Promo Banner Styles */
.promo-banner {
    position: relative;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    border-radius: 12px;
    padding: 20px;
    margin-left: 20px;
    width: 280px;
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.4);
    border: 2px solid #ba68c8;
    overflow: hidden;
    animation: pulse-glow 2s infinite alternate;
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.promo-value {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.promo-plus {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.promo-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.promo-timer {
    background: rgba(33, 33, 33, 0.9);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}

.timer-title {
    font-size: 12px;
    color: #ba68c8;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.timer-digits {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.timer-digits span {
    display: inline-block;
    min-width: 30px;
    text-align: center;
}

.promo-button {
    background: #212121;
    color: #ba68c8;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.promo-button:hover {
    background: #0f0a1e;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #212121;
    color: #ba68c8;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(15deg);
}

/* Bonus Calculator Styles */
.bonus-calculator {
    background: rgba(33, 33, 33, 0.8);
    border-radius: 12px;
    padding: 15px; /* Уменьшили отступы */
    margin: 15px 0; /* Уменьшили отступы */
    border: 1px solid rgba(156, 39, 176, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 280px; /* Ограничили максимальную ширину */
}

.calculator-title {
    color: #ba68c8;
    font-size: 16px; /* Уменьшили размер шрифта */
    margin-bottom: 12px; /* Уменьшили отступ */
    font-weight: 700;
}

.calculator-form {
    display: grid;
    gap: 15px;
}

.calculator-group {
    display: flex;
    flex-direction: column;
}

.calculator-label {
    color: #ddd;
    margin-bottom: 5px;
    font-size: 14px;
}

.calculator-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 6px;
    padding: 8px; /* Уменьшили отступы */
    color: #212121;
    font-size: 14px; /* Уменьшили размер шрифта */
}

.calculator-button {
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px; /* Уменьшили отступы */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px; /* Уменьшили размер шрифта */
}

.calculator-button:hover {
    background: linear-gradient(45deg, #ba68c8, #9575cd);
}

.calculator-result {
    margin-top: 15px;
    padding: 15px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ba68c8;
}

.result-title {
    color: #ba68c8;
    font-weight: 700;
    margin-bottom: 8px; /* Уменьшили отступ */
    font-size: 14px; /* Уменьшили размер шрифта */
}


.result-value {
    font-size: 18px;
    font-weight: 700;
}

/* Info Cards Styles */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 190px; /* Уменьшил ширину */
    margin-left: 0; /* Убрал отступ слева */
}

.info-card {
    background: rgba(33, 33, 33, 0.8);
    border-radius: 10px; /* Немного уменьшил скругление */
    padding: 12px; /* Уменьшил отступы внутри */
    border: 1px solid rgba(156, 39, 176, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.info-card-title {
    color: #ba68c8;
    font-size: 14px; /* Уменьшил шрифт */
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.info-card-content {
    font-size: 12px; /* Уменьшил шрифт */
    color: #ddd;
    line-height: 1.3;
}

.provider-icons, .payment-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px; /* Уменьшил расстояние между иконками */
}

.provider-icon, .payment-icon {
    width: 22px; /* Уменьшил иконки */
    height: 22px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.info-card {
    background: rgba(33, 33, 33, 0.8);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(156, 39, 176, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.2);
}

.info-card-title {
    color: #ba68c8;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-card-content {
    font-size: 14px;
    color: #ddd;
}

.language-text {
    background: rgba(156, 39, 176, 0.2);
    color: #ba68c8;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
}

.provider-icons, .payment-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-icon, .payment-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.provider-icon:hover, .payment-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.3);
}

.more-providers, .more-payments {
    font-size: 14px;
    color: #bbb;
    margin-left: 5px;
}

.language-text {
    background: rgba(156, 39, 176, 0.2);
    color: #ba68c8;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
}

.provider-icons, .payment-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-icon, .payment-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.provider-icon:hover, .payment-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.3);
}

.more-providers, .more-payments {
    font-size: 14px;
    color: #bbb;
    margin-left: 5px;
}

/* Casino Card Styles */
.casino-ratings {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.casino-card {
    background: linear-gradient(135deg, #1c1a2e, #0f0a1e);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid rgba(156, 39, 176, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.image-frame {
    border: 3px solid rgba(156, 39, 176, 0.4);
    border-radius: 8px;
    overflow: hidden;
    width: 220px;
    height: 60px;
    margin-right: 20px;
}

.casino-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.casino-image:hover {
    transform: scale(1.1);
}

.casino-name {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(90deg, #ba68c8, #9575cd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.casino-name a {
    transition: all 0.3s ease;
}

.casino-name a:hover {
    text-shadow: 0 0 10px rgba(186, 104, 200, 0.5);
}

.card-content {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.card-main {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.info-section {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex: 1 1 200px;
}

.info-label {
    color: #ba68c8;
    font-weight: 700;
    min-width: 100px;
    margin-right: 10px;
}

.card-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-criteria {
    flex: 0 0 300px;
}

.casino-criteria {
    background: rgba(33, 33, 33, 0.8);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.criteria-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.criteria-label {
    font-size: 14px;
    color: #ddd;
    min-width: 120px;
    font-weight: 600;
}

.criteria-gauge {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(156, 39, 176, 0.4);
    overflow: hidden;
    margin: 0 10px;
}

.criteria-gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, #ba68c8, #9575cd);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.criteria-value {
    font-size: 14px;
    font-weight: 800;
    color: #ba68c8;
    min-width: 30px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.casino-bonus {
    flex: 1;
    background: rgba(156, 39, 176, 0.15);
    color: #ba68c8;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.casino-bonus:hover {
    transform: scale(1.03);
}

.play-button, .promo-button {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.play-button {
    background: #27ae60;
    border: 2px solid #555;
    color: #fff;
}

.play-button:hover {
    background: #444;
    border-color: #666;
    transform: translateY(-3px);
}

.promo-button {
    background: linear-gradient(45deg, #e706af, #673ab7);
    border: 2px solid #ba68c8;
    color: #ffffff;
    position: relative;
}

.promo-button:hover {
    background: linear-gradient(45deg, #ba68c8, #9575cd);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

.promo-button::before {
    content: 'Копировать';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(156, 39, 176, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-button:hover::before {
    opacity: 1;
}

.promo-button.copied::after {
    content: 'Скопировано!';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(156, 39, 176, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
    animation: fadeOut 1.5s forwards;
}

@keyframes fadeOut {
    to { opacity: 0; }
}

.content-wrapper {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.main-content {
    flex: 2;
}

.sidebar {
    flex: 1;
    min-width: 300px;
}

h2 {
    color: #ba68c8;
    font-size: 28px;
    margin: 25px 0 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    color: #fff;
    font-size: 20px;
    margin: 20px 0 10px;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
}

h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    border-radius: 2px;
    background: #ba68c8;
}

p {
    color: #bbb;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    color: #bbb;
}

.info-table, .bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(33, 33, 33, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

.info-table th, .info-table td,
.bonus-table th, .bonus-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table th, .bonus-table th {
    color: #ba68c8;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.2);
}

.info-table td, .bonus-table td {
    color: #ddd;
}

.bonus-list {
    margin: 25px 0;
    padding-left: 15px;
}

.bonus-item {
    background: linear-gradient(145deg, #1c1a2e, #0f0a1e);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(156,39,176,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin-left: -10px;
}

.bonus-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
    margin-top: -10px;
}

.bonus-badge {
    display: inline-block;
    padding: 8px 10px;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: skewX(-10deg);
    min-width: 140px;
    text-align: center;
    transition: all 0.3s ease;
    margin-left: -55px;
}

.bonus-badge.exclusive {
    background: linear-gradient(45deg, #ff1a75, #ff4d4d);
    animation: pulse-red 2s infinite;
}

.bonus-badge.welcome {
    background: linear-gradient(45deg, #1a75ff, #4d94ff);
    animation: pulse-blue 2s infinite;
}

.bonus-badge.regular {
    background: linear-gradient(45deg, #1aff75, #4dff4d);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 26, 117, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 26, 117, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 26, 117, 0); }
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(26, 117, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(26, 117, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 117, 255, 0); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(26, 255, 117, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(26, 255, 117, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 255, 117, 0); }
}

.bonus-item h3 {
    font-size: 24px;
    margin: 0;
    background: linear-gradient(90deg, #ba68c8, #9575cd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.bonus-item p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 10px;
}

.bonus-actions {
    display: flex;
    gap: 15px;
    padding-left: 10px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.faq-question {
    color: #ba68c8;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 10px 0;
    color: #bbb;
}

.faq-answer p {
    margin-bottom: 0;
}

.pros-cons {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.pros, .cons {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
}

.pros {
    background: rgba(0, 204, 102, 0.1);
    border: 1px solid rgba(0, 204, 102, 0.3);
}

.cons {
    background: rgba(204, 0, 51, 0.1);
    border: 1px solid rgba(204, 0, 51, 0.3);
}

.pros h3, .cons h3 {
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 18px;
}

.pros li::before {
    content: '✓';
    color: #00cc66;
    margin-right: 8px;
}

.cons li::before {
    content: '✗';
    color: #cc0033;
    margin-right: 8px;
}

.modern-footer {
    background: linear-gradient(135deg, #1c1a2e, #0f0a1e);
    padding: 40px 20px;
    margin-top: 50px;
    border-top: 3px solid rgba(156, 39, 176, 0.3);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    padding: 20px;
    background: rgba(33, 33, 33, 0.9);
    border-radius: 10px;
    border: 2px solid rgba(156, 39, 176, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-section h4 {
    color: #ba68c8;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 800;
}

.footer-links a, .footer-links p {
    display: block;
    color: #bbb;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ba68c8;
    padding-left: 5px;
}

.caption {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 20px;
}

.anchor {
    display: inline-block;
    color: #ba68c8;
    font-weight: 700;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.anchor:hover {
    color: #9575cd;
    text-decoration: underline;
}

.seo-hidden {
    display: none;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(156, 39, 176, 0.4); }
    100% { box-shadow: 0 0 25px rgba(156, 39, 176, 0.6); }
}

.game-banner {
    background: rgba(33, 33, 33, 0.8);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(156, 39, 176, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.game-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.2);
}

.banner-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ba68c8;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
}

.game-promo-card {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.game-promo-image-container {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.game-promo-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 15px;
    color: white;
}

.game-promo-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.game-promo-provider {
    font-size: 12px;
    color: #ba68c8;
    opacity: 0.8;
}

.game-promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff3366;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.game-promo-card:hover .game-promo-image {
    transform: scale(1.05);
}

.casino-reviews {
    background: #0f0a1e;
    padding: 40px 0;
    border-top: 2px solid rgba(156, 39, 176, 0.3);
    border-bottom: 2px solid rgba(156, 39, 176, 0.3);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.casino-reviews h2 {
    color: #ba68c8;
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.review-form {
    background: rgba(33, 33, 33, 0.8);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-form h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.review-input {
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(156,39,176,0.3);
    border-radius: 6px;
    color: #fff;
}

.rating {
    display: flex;
    gap: 5px;
}

.rating span {
    color: #444;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.rating span:hover,
.rating span.active {
    color: #ba68c8;
}

.review-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(156,39,176,0.3);
    border-radius: 6px;
    color: #fff;
    resize: vertical;
}

.review-form button {
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.review-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

.notice {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(33, 33, 33, 0.8);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #ba68c8;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-header .author {
    font-weight: 700;
    color: #ba68c8;
}

.review-header .date {
    color: #bbb;
    font-size: 14px;
}

.review-header .rating {
    color: #ba68c8;
}

.review-card p {
    line-height: 1.6;
    color: #ddd;
}

/* Lootbox styles */
.lootbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.lootbox-card {
    background: linear-gradient(145deg, #1c1a2e, #0f0a1e);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(156, 39, 176, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    text-align: center;
}

.lootbox-card img {
    max-height: 120px;
    margin-bottom: 15px;
}

.lootbox-name {
    color: #ba68c8;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.lootbox-prize {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.lootbox-level {
    color: #bbb;
    font-size: 14px;
}

/* VIP Benefits */
.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.vip-benefit {
    background: rgba(33, 33, 33, 0.8);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(156, 39, 176, 0.3);
    transition: all 0.3s ease;
}

.vip-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.2);
}

.vip-benefit img {
    height: 60px;
    margin-bottom: 10px;
}

.vip-benefit h4 {
    color: #ba68c8;
    margin-bottom: 10px;
}

/* Lottery styles */
.lottery-container {
    background: rgba(33, 33, 33, 0.8);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.lottery-prizes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.lottery-prize {
    background: rgba(156, 39, 176, 0.1);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.lottery-prize.grand {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.lottery-prize h4 {
    color: #ba68c8;
    margin-bottom: 10px;
}

.lottery-prize.grand h4 {
    color: #ffd700;
}

.lottery-prize p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
}

/* Стили для компактных таблиц в сайдбаре */
.compact-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.table-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.table-label {
    font-size: 12px;
    color: #ba68c8;
    font-weight: 600;
    min-width: 80px;
    margin-right: 10px;
    flex-shrink: 0;
}

.table-value {
    font-size: 12px;
    color: #ddd;
    text-align: right;
    line-height: 1.3;
}

.table-value a {
    color: #ba68c8;
    transition: color 0.3s ease;
}

.table-value a:hover {
    color: #9575cd;
}

/* Убираем старые таблицы из сайдбара */
.sidebar .info-table {
    display: none;
}

.sidebar h2 {
    display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
    .sidebar {
        margin-top: 30px;
    }
    .card-content {
        flex-direction: column;
    }
    .card-criteria {
        margin-top: 20px;
    }
    .pros-cons {
        flex-direction: column;
    }
    .promo-banner {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        max-width: 300px;
    }
    .card-main {
        flex-direction: column;
    }
    .card-right {
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    .info-cards {
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: 0;
        width: 100%;
    }
    .info-card {
        flex: 1 1 200px;
    }
    .lootbox-grid, .vip-benefits, .lottery-prizes {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    .image-frame {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .card-footer {
        flex-direction: column;
    }
    .casino-bonus, .play-button, .promo-button {
        width: 100%;
    }
    h2 {
        font-size: 24px;
    }
    .info-table, .bonus-table {
        display: block;
        overflow-x: auto;
    }
    .info-card {
        flex: 1 1 100%;
    }
    .bonus-badge {
        right: -25px;
        padding: 3px 25px;
        font-size: 11px;
    }
    .form-row {
        flex-direction: column;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .lootbox-grid, .vip-benefits, .lottery-prizes {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
/* Простое решение - выравниваем все блоки по верху */
.card-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start; /* Ключевое свойство */
}

.card-main {
    flex: 1;
    display: flex;
    flex-direction: column; /* Ставим элементы в колонку */
    gap: 15px;
    align-items: flex-start;
}

/* Убираем отступы у калькулятора */
.bonus-calculator {
    margin: 0;
}

/* Убираем отступы у промо-баннера */
.promo-banner {
    margin-left: 0;
    margin-top: 0;
}

/* Добавляем в casino-arkada.css */

/* Контейнер для промо-баннера и калькулятора */
.promo-calculator-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 280px;
}

/* Выравниваем все блоки по верху */
.card-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.card-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

/* Убираем отступы у калькулятора */
.bonus-calculator {
    margin: 0;
}

/* Убираем отступы у промо-баннера */
.promo-banner {
    margin-left: 0;
    margin-top: 0;
}

/* Выравниваем все блоки по верху */
.card-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.card-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

/* Уменьшаем калькулятор и убираем отступы */
.bonus-calculator {
    background: rgba(33, 33, 33, 0.8);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(156, 39, 176, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 280px;
    margin: 0;
}

/* Убираем отступы у промо-баннера */
.promo-banner {
    margin-left: 0;
    margin-top: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
    .sidebar {
        margin-top: 30px;
    }
    .card-content {
        flex-direction: column;
    }
    .card-criteria {
        margin-top: 20px;
    }
    .pros-cons {
        flex-direction: column;
    }
    .promo-banner {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        max-width: 300px;
    }
    .card-main {
        flex-direction: column;
        align-items: center; /* Центрируем контент */
    }
    .bonus-calculator {
        width: 100%;
        max-width: 300px;
        margin: 15px auto; /* Центрируем калькулятор */
    }
}

@media (max-width: 768px) {
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    .image-frame {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .card-footer {
        flex-direction: column;
    }
    .casino-bonus, .play-button, .promo-button {
        width: 100%;
    }
    h2 {
        font-size: 24px;
    }
    
    /* НОВЫЕ СТИЛИ ДЛЯ МОБИЛЬНОЙ ВЕРСИИ */
    .card-content {
        gap: 15px;
    }
    
    .card-right {
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        gap: 15px;
    }
    
    .info-cards {
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: 0;
        width: 100%;
        gap: 12px;
    }
    
    .info-card {
        flex: 1 1 calc(50% - 10px); /* Две карточки в ряд */
        min-width: 140px;
    }
    
    .info-card-title {
        font-size: 13px; /* Уменьшаем шрифт */
        min-height: 40px; /* Фиксированная высота для выравнивания */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 5px;
    }
    
    .info-card-content {
        font-size: 11px;
        text-align: center;
    }
    
    .provider-icons, .payment-icons {
        justify-content: center;
    }
    
    .provider-icon, .payment-icon {
        width: 20px;
        height: 20px;
    }
    
    .language-text {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .more-providers, .more-payments {
        font-size: 11px;
    }
    
    /* casino-criteria рядом с info-cards */
    .card-criteria {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
        margin-top: 0;
    }
    
    .casino-criteria {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .criteria-item {
        margin-bottom: 8px;
        flex-wrap: wrap;
    }
    
    .criteria-label {
        font-size: 11px;
        min-width: 80px;
    }
    
    .criteria-gauge {
        margin: 0 5px;
    }
    
    .criteria-value {
        font-size: 12px;
        min-width: 25px;
    }
    
    /* Центрируем промо-баннер и калькулятор */
    .promo-banner {
        margin: 0 auto 15px auto;
        width: 100%;
        max-width: 320px;
    }
    
    .bonus-calculator {
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }
    
    /* Адаптируем таблицы */
    .info-table, .bonus-table {
        display: block;
        overflow-x: auto;
    }
    
    .bonus-badge {
        right: -25px;
        padding: 3px 25px;
        font-size: 11px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .lootbox-grid, .vip-benefits, .lottery-prizes {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .info-card {
        flex: 1 1 100%; /* На очень маленьких экранах - одна карточка в ряд */
    }
    
    .card-criteria {
        flex: 1 1 100%;
    }
    
    .card-right {
        flex-direction: column;
    }
    
    .promo-banner, .bonus-calculator {
        max-width: 280px;
    }
    
    .promo-value {
        font-size: 28px;
    }
    
    .timer-digits {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .card-right {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }
    
    .info-cards {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        min-width: 0;
    }
    
    .info-card {
        flex: 1 1 calc(33.333% - 8px); /* 3 карточки в ряд */
        min-width: 110px;
        min-height: 130px;
    }
    
    .card-criteria {
        flex: 1 1 calc(33.333% - 8px); /* Такая же ширина как у info-card */
        min-width: 110px;
        min-height: 130px;
        margin-top: 0;
    }
    
    .casino-criteria {
        height: 100%;
        min-height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    
    .criteria-item {
        margin-bottom: 6px;
        flex-wrap: nowrap;
    }
    
    .criteria-label {
        font-size: 10px;
        min-width: 70px;
    }
    
    .criteria-gauge {
        flex: 1;
        margin: 0 5px;
        min-width: 40px;
    }
    
    .criteria-value {
        font-size: 11px;
        min-width: 25px;
    }
}
@media (max-width: 768px) {
    .card-main {
        flex-direction: column;
        align-items: center; /* Центрируем все элементы */
        width: 100%;
    }
    
    .promo-banner {
        margin: 0 auto 15px auto; /* Центрируем и добавляем отступ снизу */
        width: 100%;
        max-width: 320px;
        display: flex;
        justify-content: center;
    }
    
    .bonus-calculator {
        margin: 0 auto; /* Центрируем */
        width: 100%;
        max-width: 320px;
    }
    
    /* Если нужно центрировать контент внутри промо-баннера */
    .promo-content {
        width: 100%;
        text-align: center;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .promo-banner {
        max-width: 280px;
    }
    
    .bonus-calculator {
        max-width: 280px;
    }
    
    .promo-value {
        font-size: 28px; /* Немного уменьшаем для маленьких экранов */
    }
    
    .timer-digits {
        font-size: 18px;
    }
}

/* Исправляем bonus-header для мобильной версии */
@media (max-width: 768px) {
    .bonus-header {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        position: relative;
        padding-left: 20px; /* Увеличиваем отступ слева */
        margin-top: -10px;
        flex-wrap: nowrap; /* Запрещаем перенос */
    }
    
    .bonus-badge {
        display: inline-block;
        padding: 8px 10px;
        margin-right: 15px; /* Уменьшаем отступ справа */
        font-size: 12px; /* Немного уменьшаем шрифт */
        font-weight: 600;
        text-transform: uppercase;
        color: white;
        border-radius: 6px;
        position: relative;
        z-index: 1;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        transform: skewX(-10deg);
        min-width: 100px; /* Уменьшаем минимальную ширину */
        text-align: center;
        transition: all 0.3s ease;
        margin-left: -40px; /* Смещаем меньше влево */
    }
    
    .bonus-item h3 {
        font-size: 20px; /* Уменьшаем размер заголовка */
        margin: 0;
        background: linear-gradient(90deg, #ba68c8, #9575cd);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 800;
        letter-spacing: 0.5px;
        white-space: nowrap; /* Запрещаем перенос текста */
    }
    
    /* Для очень маленьких экранов */
    @media (max-width: 480px) {
        .bonus-header {
            padding-left: 15px;
        }
        
        .bonus-badge {
            min-width: 80px;
            font-size: 11px;
            padding: 6px 8px;
            margin-left: -30px;
            margin-right: 10px;
        }
        
        .bonus-item h3 {
            font-size: 18px;
        }
    }
}
/* Меньший отступ (15px) */
.sidebar .info-card {
    margin-bottom: 15px;
}

/* Или через gap для контейнера */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Отступ между всеми дочерними элементами */
}

/* Отступ только сверху для всех кроме первого */
.sidebar .info-card:not(:first-child) {
    margin-top: 18px;
}
/* УВЕЛИЧЕНИЕ ДЛЯ МОБИЛЬНОЙ ВЕРСИИ */
@media (max-width: 768px) {
    .provider-icon, .payment-icon {
        width: 28px;
        height: 28px;
    }
    
    .more-providers, .more-payments {
        font-size: 14px;
    }
    
    .language-text {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .info-card-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .provider-icons, .payment-icons {
        gap: 10px;
    }
}
/* Дополнительные фиксы для очень маленьких экранов */
@media (max-width: 360px) {
    .info-card {
        min-width: 100px; /* Еще меньше минимальная ширина */
    }
    
    .bonus-badge {
        margin-left: -25px; /* Меньше смещение */
        min-width: 80px;    /* Уже бейдж */
        font-size: 10px;    /* Меньше текст */
    }
    
    .promo-banner, .bonus-calculator {
        max-width: 280px;   /* Уже баннеры */
    }
}