/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

header h1 {
    font-size: 28px;
    color: #764ba2;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #667eea;
    color: white;
}

nav a.active {
    background: #764ba2;
    color: white;
}

/* Main Content */
main {
    background: white;
    margin: 30px auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

section {
    margin-bottom: 50px;
}

h2 {
    color: #764ba2;
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

h3 {
    color: #555;
    font-size: 22px;
    margin: 20px 0 10px;
}

h4 {
    color: #666;
    font-size: 18px;
    margin: 15px 0 10px;
}

p {
    margin-bottom: 15px;
    color: #444;
    font-size: 16px;
}

.lead {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Promo Hero Section */
.promo-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.promo-hero h2 {
    color: white;
    border: none;
    font-size: 38px;
}

.promo-code {
    background: rgba(255,255,255,0.2);
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 42px;
    font-weight: 700;
    display: inline-block;
    margin: 15px 0;
    letter-spacing: 3px;
    border: 3px solid white;
}

.promo-hero .lead {
    color: rgba(255,255,255,0.95);
}

/* Placeholder для изображений */
.promo-image-placeholder {
    background: #f0f0f0;
    border: 3px dashed #667eea;
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    margin: 30px 0;
    color: #764ba2;
}

.promo-image-placeholder p {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}

.image-note {
    font-size: 14px !important;
    color: #999 !important;
    font-style: italic;
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.bonus-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card h3 {
    color: #764ba2;
    font-size: 24px;
    margin-bottom: 15px;
}

.bonus-amount {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin: 15px 0;
}

.bonus-details {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(102, 126, 234, 0.3);
}

/* Info Boxes */
.info-box, .warning-box, .tip-box {
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.info-box {
    background: #e3f2fd;
    border-left: 5px solid #2196F3;
}

.warning-box {
    background: #fff3e0;
    border-left: 5px solid #ff9800;
}

.tip-box {
    background: #f1f8e9;
    border-left: 5px solid #8bc34a;
}

.info-box h4, .warning-box h4, .tip-box h4 {
    color: #333;
    margin-bottom: 15px;
}

/* Steps */
.steps {
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.step-number {
    background: #667eea;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    font-weight: 600;
    font-size: 16px;
}

tbody tr:hover {
    background: #f5f5f5;
}

/* Lists */
ul, ol {
    margin: 20px 0 20px 30px;
}

li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Slot List */
.slot-list {
    margin: 30px 0;
}

.slot-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid #667eea;
}

.slot-item h3 {
    color: #764ba2;
    margin-top: 0;
}

.slot-rtp {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin: 10px 0;
}

/* Strategy Tips / Promo Grid */
.strategy-tips, .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tip-card, .promo-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #667eea;
}

.promo-card {
    border-top-color: #764ba2;
}

.tip-card h3, .promo-card h3 {
    color: #667eea;
    margin-top: 0;
}

.promo-card h3 {
    color: #764ba2;
}

.promo-terms {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    color: white;
}

.status-badge.iron { background: #78909c; }
.status-badge.bronze { background: #cd7f32; }
.status-badge.silver { background: #c0c0c0; }
.status-badge.gold { background: #ffd700; color: #333; }
.status-badge.platinum { background: #e5e4e2; color: #333; }
.status-badge.diamond { background: #b9f2ff; color: #333; }

/* Casino Features */
.casino-features {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #764ba2;
}

.feature-item h3 {
    color: #667eea;
    margin-top: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.cta-section h2 {
    color: white;
    border: none;
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.95);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #764ba2;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,255,255,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #764ba2;
}

/* Footer */
footer {
    background: rgba(255,255,255,0.95);
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
}

footer p {
    color: #666;
    margin: 5px 0;
}

.disclaimer {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    main {
        padding: 20px;
    }

    h2 {
        font-size: 26px;
    }

    .promo-code {
        font-size: 32px;
    }

    .bonus-grid, .strategy-tips, .promo-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
    }

    table {
        font-size: 14px;
    }

    th, td {
        padding: 10px;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
