 .rules-wrapper {
        max-width: 900px;
        margin: 40px auto 80px;
        padding: 0 20px;
        font-family: 'Heebo', sans-serif;
    }

    .rules-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .rules-header h1 {
        font-size: 3.5rem;
        font-weight: 900;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 10px;
        line-height: 1;
        background: linear-gradient(45deg, #fff, var(--primary, #00f0ff));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .rules-header p {
        color: #aaa;
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.5;
    }

    .rules-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .rule-card {
        background: rgba(11, 12, 16, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 25px 30px;
        display: flex;
        align-items: flex-start;
        gap: 25px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .rule-card:hover {
        background: rgba(11, 12, 16, 0.9);
        border-color: var(--primary, #00f0ff);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 240, 255, 0.1);
    }

    .rule-icon {
        background: rgba(255, 255, 255, 0.03);
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--primary, #00f0ff);
        flex-shrink: 0;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .rule-card:hover .rule-icon {
        background: var(--primary, #00f0ff);
        color: #000;
        transform: scale(1.1);
        transition: 0.3s;
    }

    .rule-content h3 {
        color: #fff;
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0 0 8px 0;
    }

    .rule-content p {
        color: #999;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }

    .rules-footer {
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.05);
        text-align: center;
    }

    .rules-footer p {
        color: #777;
        font-size: 0.95rem;
    }

    .rules-footer a {
        color: var(--primary, #00f0ff);
        text-decoration: none;
        font-weight: bold;
    }

    .rules-footer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .rule-card {
            flex-direction: column;
            gap: 15px;
            padding: 20px;
        }
        .rules-header h1 { font-size: 2.5rem; }
    }