/* casino-1go.css - СТИЛИ ДЛЯ 1GO CASINO */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0f1a2e;
    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, #00cc66, #0099ff);
    border-radius: 12px;
    padding: 20px;
    margin-left: 20px;
    width: 280px;
    box-shadow: 0 10px 25px rgba(0, 204, 102, 0.4);
    border: 2px solid #33ccff;
    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: #1c2a3a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.promo-value {
    font-size: 36px;
    font-weight: 900;
    color: #1c2a3a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.promo-plus {
    font-size: 28px;
    font-weight: 700;
    color: #1c2a3a;
}

.promo-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #1c2a3a;
    margin-bottom: 15px;
}

.promo-timer {
    background: rgba(28, 42, 58, 0.9);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}

.timer-title {
    font-size: 12px;
    color: #33ccff;
    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: #1c2a3a;
    color: #33ccff;
    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: #0f1a2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #1c2a3a;
    color: #33ccff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(15deg);
}

/* Bonus Calculator Styles */
.bonus-calculator {
    background: rgba(28, 42, 58, 0.8);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(0, 204, 102, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.calculator-title {
    color: #33ccff;
    font-size: 20px;
    margin-bottom: 15px;
    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(0, 204, 102, 0.3);
    border-radius: 6px;
    padding: 10px;
    color: #1c2a3a;
    font-size: 16px;
}

.calculator-button {
    background: linear-gradient(45deg, #00cc66, #0099ff);
    color: #1c2a3a;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculator-button:hover {
    background: linear-gradient(45deg, #33ff99, #33ccff);
}

.calculator-result {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 204, 102, 0.1);
    border-radius: 8px;
    border-left: 4px solid #00cc66;
}

.result-title {
    color: #33ccff;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-value {
    font-size: 18px;
    font-weight: 700;
}

/* Info Cards Styles */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 20px;
    width: 280px;
}

.info-card {
    background: rgba(28, 42, 58, 0.8);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 204, 102, 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(0, 204, 102, 0.2);
}

.info-card-title {
    color: #33ccff;
    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(0, 204, 102, 0.2);
    color: #33ccff;
    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, #1c2a3a, #0f1a2e);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid rgba(0, 204, 102, 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(0, 204, 102, 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, #00cc66, #0099ff);
    -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(0, 204, 102, 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: #33ccff;
    font-weight: 700;
    min-width: 100px;
    margin-right: 10px;
}

.card-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Criteria Gauge Styles */
.card-criteria {
    flex: 0 0 300px;
}

.casino-criteria {
    background: rgba(28, 42, 58, 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(0, 204, 102, 0.4);
    overflow: hidden;
    margin: 0 10px;
}

.criteria-gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, #00cc66, #0099ff);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.criteria-value {
    font-size: 14px;
    font-weight: 800;
    color: #33ccff;
    min-width: 30px;
}

/* Footer Styles */
.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(0, 204, 102, 0.15);
    color: #33ccff;
    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, #ff9933);
    border: 2px solid #33ccff;
    color: #1c2a3a;
    position: relative;
}

.promo-button:hover {
    background: linear-gradient(45deg, #ffdd33, #ffaa66);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 204, 102, 0.4);
}

.promo-button::before {
    content: 'Копировать';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 204, 102, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #1c2a3a;
    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(0, 204, 102, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #1c2a3a;
    animation: fadeOut 1.5s forwards;
}

@keyframes fadeOut {
    to { opacity: 0; }
}

/* Content Wrapper Styles */
.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;
}

/* Typography Styles */
h1, h2 {
    color: #33ccff;
    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: #33ccff;
}

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;
}

/* Table Styles */
.info-table, .bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(28, 42, 58, 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: #33ccff;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.2);
}

.info-table td, .bonus-table td {
    color: #ddd;
}

/* Bonus List Styles */
.bonus-list {
    margin: 25px 0;
    padding-left: 15px;
}

.bonus-item {
    background: linear-gradient(145deg, #1c2a3a, #0f1a2e);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(0,204,102,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, #00cc66, #0099ff);
    -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 Styles */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.faq-question {
    color: #33ccff;
    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 Styles */
.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;
}

/* Image Caption Styles */
.caption {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* Anchor Link Styles */
.anchor {
    display: inline-block;
    color: #33ccff;
    font-weight: 700;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.anchor:hover {
    color: #0099ff;
    text-decoration: underline;
}

/* SEO Hidden Text */
.seo-hidden {
    display: none;
}

/* Animation */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(0, 204, 102, 0.4); }
    100% { box-shadow: 0 0 25px rgba(0, 204, 102, 0.6); }
}

/* Стили для баннера игры */
.game-banner {
    background: rgba(28, 42, 58, 0.8);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 204, 102, 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(0, 204, 102, 0.2);
}

.banner-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #33ccff;
    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: #33ccff;
    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);
}

/* Trust Badges */
.trust-badges {
    margin: 30px 0;
    padding: 20px;
    background: rgba(28, 42, 58, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 204, 102, 0.3);
}

.trust-badges h3 {
    color: #33ccff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.badge-item img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.badge-item:hover img {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(250deg);
}

.badge-item span {
    color: #ddd;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.provider-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(0,204,102,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.provider-card:hover {
    background: rgba(0,204,102,0.1);
    transform: translateY(-2px);
    border-color: #33ccff;
}

.provider-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 5px;
    border-radius: 6px;
}

.provider-card span {
    font-size: 11px;
    color: #ddd;
    font-weight: 600;
    line-height: 1.2;
}

/* Casino Reviews */
.casino-reviews {
    background: #0f1a2e;
    padding: 40px 0;
    border-top: 2px solid rgba(0, 204, 102, 0.3);
    border-bottom: 2px solid rgba(0, 204, 102, 0.3);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.casino-reviews h2 {
    color: #33ccff;
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.review-form {
    background: rgba(28, 42, 58, 0.8);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 204, 102, 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(0,204,102,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: #33ccff;
}

.review-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(0,204,102,0.3);
    border-radius: 6px;
    color: #fff;
    resize: vertical;
}

.review-form button {
    background: linear-gradient(45deg, #00cc66, #0099ff);
    color: #1c2a3a;
    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(0, 204, 102, 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(28, 42, 58, 0.8);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #33ccff;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-header .author {
    font-weight: 700;
    color: #33ccff;
}

.review-header .date {
    color: #bbb;
    font-size: 14px;
}

.review-header .rating {
    color: #33ccff;
}

.review-card p {
    line-height: 1.6;
    color: #ddd;
}

/* Related Links */
.related-links {
    margin: 30px 0;
    padding: 20px;
    background: rgba(28, 42, 58, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 204, 102, 0.3);
}

.related-links h3 {
    color: #33ccff;
    margin-bottom: 15px;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.links-container a {
    background: rgba(0, 204, 102, 0.1);
    color: #33ccff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.links-container a:hover {
    background: rgba(0, 204, 102, 0.2);
    transform: translateY(-2px);
}

/* Content Update */
.content-update {
    background: rgba(0, 204, 102, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #33ccff;
}

.content-update strong {
    color: #33ccff;
}

/* 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;
    }
}

@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;
    }
    .badges-container {
        gap: 20px;
    }
    .badge-item {
        min-width: 100px;
    }
    .badge-item img {
        width: 40px !important;
        height: 40px !important;
    }
    .badge-item span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .badges-container {
        gap: 15px;
    }
    .badge-item {
        min-width: 80px;
    }
    .badge-item img {
        width: 35px !important;
        height: 35px !important;
    }
    .badge-item span {
        font-size: 11px;
    }
    .links-container {
        flex-direction: column;
    }
}