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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.telegram-btn {
    display: none;
}

.mobile-only {
    display: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    opacity: 0.8;
    background-color: rgba(255,255,255,0.1);
}

/* Main */
.main {
    padding: 3rem 0;
}

.article {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.article-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.article-header .image-container {
    text-align: center;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.article-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: block;
}

.play-btn-desktop {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: var(--white) !important;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 10;
}

.play-btn-desktop:hover {
    transform: translateY(-50%) translateX(5px);
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.7);
    background: linear-gradient(135deg, #0099dd 0%, #0077aa 100%);
}

.play-btn-desktop:active {
    transform: translateY(-50%) scale(0.98);
}

.desktop-only {
    display: block;
}

/* Desktop styles - ensure image is visible */
@media (min-width: 769px) {
    .desktop-only {
        display: block !important;
    }
    
    .image-container {
        max-width: 800px;
        margin: 0 auto 2rem;
        display: block !important;
        position: relative !important;
    }
    
    .article-image {
        width: 100%;
        display: block;
        position: relative;
    }
    
    .play-btn-desktop {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        left: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Sections */
.section {
    padding: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--highlight-color);
}

.section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Info boxes */
.info-box {
    background: #f0f7ff;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
}

.info-box.highlight {
    background: #fff4e6;
    border-left-color: var(--warning-color);
}

.info-box.warning {
    background: #ffe6e6;
    border-left-color: var(--danger-color);
}

/* Steps box */
.steps-box {
    background: #f8f9fa;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.steps-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.steps-list li strong {
    color: var(--accent-color);
}

.note {
    margin-top: 1rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 5px;
    font-style: italic;
    color: var(--text-light);
}

/* Lists */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.bonus-list,
.bankroll-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.bonus-list li,
.bankroll-list li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px;
}

thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
    background-color: #f8f9fa;
}

tbody tr:last-child td {
    border-bottom: none;
}

.payment-table td:first-child {
    font-weight: 600;
    color: var(--accent-color);
}

.games-table td:first-child {
    font-weight: 600;
    color: var(--accent-color);
}

.risks-table td:first-child {
    font-weight: 600;
    color: var(--danger-color);
}

/* Bonus box */
.bonus-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border: 2px solid var(--highlight-color);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.bonus-structure {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.bonus-structure h4 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

/* Conclusion */
.conclusion {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    border-left: 5px solid var(--accent-color);
    margin: 2rem;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        background-image: url('mellmobile.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
    }

    .header::before {
        background: rgba(26, 26, 46, 0.5);
    }

    .header .container {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
        z-index: 1;
        padding: 2rem 1rem;
        min-height: 100vh;
    }

    .logo {
        margin-top: 10%;
        margin-bottom: 0;
        font-size: 2rem;
    }

    .nav {
        display: none;
    }

    .telegram-btn {
        display: inline-block;
        background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
        color: var(--white);
        text-decoration: none;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
        transition: all 0.3s ease;
        margin-bottom: 40%;
        letter-spacing: 1px;
    }

    .telegram-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
    }

    .telegram-btn:active {
        transform: translateY(0);
    }
}

    .desktop-only {
        display: none;
    }

    .play-btn-desktop {
        display: none;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 1.5rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section h3 {
        font-size: 1.3rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .header {
        background-image: url('mellmobile.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
    }

    .header::before {
        background: rgba(26, 26, 46, 0.5);
    }

    .header .container {
        width: 100%;
        padding: 1.5rem 1rem;
        justify-content: space-between;
        min-height: 100vh;
    }

    .logo {
        font-size: 1.6rem;
        margin-top: 8%;
        margin-bottom: 0;
    }

    .nav {
        display: none;
    }

    .telegram-btn {
        display: inline-block;
        background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
        color: var(--white);
        text-decoration: none;
        padding: 0.9rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
        transition: all 0.3s ease;
        margin-bottom: 40%;
        letter-spacing: 1px;
    }

    .telegram-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
    }

    .telegram-btn:active {
        transform: translateY(0);
    }
}

    .desktop-only {
        display: none;
    }

    .play-btn-desktop {
        display: none;
    }

    .article-header {
        padding: 2rem 1rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .section {
        padding: 1rem;
    }

    .bonus-box,
    .steps-box {
        padding: 1rem;
    }
}

