/* ==================== ORIGINAL TEMPLATE STYLES ==================== */

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    background: image-set(url("logo.avif"));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    color: white;
}

.btn-register {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Banner */
.hero {
    background: image-set(url("foto7.avif")) no-repeat center center;
    background-size: cover;
    background-position: center;
    min-height: 375px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 20px 0px 20px;
    border-radius: 20px;
    position: relative;
}

.hero .container {
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.h1-hero {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 18px;
    padding: 15px 35px;
}

/* Winners */
.winners {
    margin-bottom: 60px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.winners-container {
    margin: 0 40px;
}

.winners-scroll {
    overflow: hidden;
    white-space: nowrap;
}

.winners-track {
    display: inline-flex;
    gap: 15px;
    animation: scroll-winners 45s linear infinite;
}

.winners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-winners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.winner-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 12px;
    padding: 8px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 70px;
    width: 180px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.winner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    text-align: center;
    flex-shrink: 0;
}

.winner-info {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.winner-name {
    font-weight: normal;
    margin-bottom: 3px;
    font-size: 11px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winner-amount {
    color: #4caf50;
    font-size: 12px;
    font-weight: normal;
    white-space: nowrap;
}

.fire-icon {
    color: #ff6b35;
    margin-left: 5px;
}

/* Popular Slots */
.section {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::before {
    content: "⭐";
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 12px;
    padding: 0;
    font-size: 20px;
    color: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.slot-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 200px;
}

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

.slot-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    text-align: center;
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 20px;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.btn-play-round {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-play-round:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.btn-play {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-play:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.jackpot-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
}

/* Main Content */
.main-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

/* Casino Info Table */
.casino-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.info-group {
    margin-bottom: 30px;
}

.info-group-title {
    font-size: 20px;
    color: #f093fb;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid rgba(240, 147, 251, 0.3);
    padding-bottom: 8px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    font-weight: bold;
    color: #f093fb;
    min-width: 40%;
    font-size: 14px;
}

.info-value {
    color: #fff;
    text-align: right;
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

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

.bonus-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.bonus-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f093fb;
}

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

.payment-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payment-card.cards {
    border-left: 4px solid #667eea;
}

.payment-card.wallets {
    border-left: 4px solid #4caf50;
}

.payment-card.crypto {
    border-left: 4px solid #f093fb;
}

.payment-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.payment-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.payment-card.cards .payment-title {
    color: #667eea;
}

.payment-card.wallets .payment-title {
    color: #4caf50;
}

.payment-card.crypto .payment-title {
    color: #f093fb;
}

.payment-list {
    color: #ccc;
    line-height: 1.6;
}

/* Game Lists */
.games-section {
    margin-bottom: 40px;
}

.games-category-title {
    font-size: 24px;
    font-weight: bold;
    margin: 30px 0 20px 0;
    color: #f093fb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slots-category::before {
    content: "🎰";
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    padding: 8px;
    font-size: 16px;
}

.crash-category::before {
    content: "🚀";
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 8px;
    padding: 8px;
    font-size: 16px;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.game-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.game-item.popular::after {
    content: """;
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
}

.game-item.new::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.advantage-card {
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card.new-brand {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(75, 0, 130, 0.1) 100%);
}

.advantage-card.modern-platform {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.advantage-card.bonus-shop {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
}

.advantage-card.vip-club {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.advantage-card.new-brand:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(75, 0, 130, 0.2) 100%);
}

.advantage-card.modern-platform:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.advantage-card.bonus-shop:hover {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2) 0%, rgba(245, 87, 108, 0.2) 100%);
}

.advantage-card.vip-club:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
}

.advantage-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.advantage-card.new-brand .advantage-title {
    color: #8a2be2;
}

.advantage-card.modern-platform .advantage-title {
    color: #667eea;
}

.advantage-card.bonus-shop .advantage-title {
    color: #f093fb;
}

.advantage-card.vip-club .advantage-title {
    color: #ffd700;
}

.advantage-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-card.new-brand .advantage-icon {
    background: linear-gradient(135deg, #8a2be2 0%, #4b0082 100%);
}

.advantage-card.modern-platform .advantage-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.advantage-card.bonus-shop .advantage-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.advantage-card.vip-club .advantage-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #f093fb;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.crypto-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
}

.crypto-logo {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

.license-info {
    font-size: 12px;
    margin: 20px 0;
    color: #999;
    line-height: 1.4;
}

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

    .hero {
        margin: 10px;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .winners-container {
        margin: 0 20px;
    }

    .winner-card {
        height: 50px;
        width: 150px;
        padding: 6px;
        gap: 8px;
    }

    .winner-avatar {
        width: 30px;
        height: 30px;
        font-size: 6px;
    }

    .winner-name {
        font-size: 9px;
    }

    .winner-amount {
        font-size: 10px;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-content {
        padding: 20px;
    }

    .casino-info {
        grid-template-columns: 1fr;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }
}
.language-switcher select {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    appearance: none;
    cursor: pointer;
    min-width: 140px;
    font-weight: 500;
}

.language-switcher {
    position: relative;
}

.language-switcher::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: #666;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}


/* ==================== NEW ARTICLE STYLES ==================== */

/* Content Section Container */
.content-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Article Headings */
.primary-heading {
    font-size: 36px;
    font-weight: bold;
    margin: 50px 0 30px 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid rgba(240, 147, 251, 0.3);
    padding-bottom: 15px;
}

.primary-heading::before {
    content: "⭐";
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 12px;
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.secondary-heading {
    font-size: 28px;
    font-weight: bold;
    margin: 40px 0 25px 0;
    color: #f093fb;
}

.tertiary-heading {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: #667eea;
}

.quaternary-heading {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #8a2be2;
}

/* Article Text */
.intro-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #d0d0d0;
}

.content-section ul,
.content-section ol {
    margin: 20px 0 20px 25px;
    line-height: 1.7;
    color: #d0d0d0;
}

.content-section li {
    margin-bottom: 12px;
}

.content-section strong {
    color: #f093fb;
    font-weight: 600;
}

/* Info Tables */
.info-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.info-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #d0d0d0;
    font-size: 15px;
}

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

.info-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Feature Grids */
.feature-grid,
.support-channels,
.control-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item,
.support-card,
.control-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover,
.support-card:hover,
.control-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.feature-item h4,
.support-card h4,
.control-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f093fb;
    font-weight: 600;
}

/* Provider Cards */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.provider-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.provider-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #667eea;
    font-weight: 600;
}

/* Step Lists */
.step-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 30px 0;
    padding: 0;
}

.step-list li {
    counter-increment: step-counter;
    position: relative;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

/* VIP Levels */
.vip-level {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.vip-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
}

.vip-level h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffd700;
    font-weight: 600;
}

/* CTA Blocks */
.cta-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 35px;
    margin: 40px 0;
    text-align: center;
}

.cta-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-block p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(69, 160, 73, 0.1) 100%);
    border-left: 4px solid #4caf50;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
}

.warning-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-left: 4px solid #f97316;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
}

/* Responsive for Article */
@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
    }

    .primary-heading {
        font-size: 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .secondary-heading {
        font-size: 24px;
    }

    .tertiary-heading {
        font-size: 20px;
    }

    .feature-grid,
    .support-channels,
    .control-tools,
    .provider-grid {
        grid-template-columns: 1fr;
    }

    .info-table {
        font-size: 14px;
    }

    .info-table th,
    .info-table td {
        padding: 12px 15px;
    }

    .step-list li {
        padding: 15px 15px 15px 60px;
    }
}
