/* --- REGULI PAGE PREMIUM DESIGN --- */
.rules-page {
    max-width: 1100px;
    margin: 60px auto 40px auto;
    padding: 0 18px;
}
.rules-title-card {
    background: linear-gradient(90deg,#c77dff33,#6c63ff22,#00d0ff11);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(199,125,255,0.18);
    padding: 32px 0 18px 0;
    margin-bottom: 32px;
    text-align: center;
}
.rules-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 38px;
}
.rule-card {
    background: linear-gradient(120deg,#23234a 60%,#c77dff22 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(199,125,255,0.13);
    padding: 24px 28px;
    min-width: 280px;
    max-width: 420px;
    flex: 1 1 320px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 1.15rem;
    position: relative;
    transition: transform 0.18s cubic-bezier(.77,0,.18,1), box-shadow 0.18s;
}
.rule-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(199,125,255,0.22);
}
.rule-icon {
    font-size: 2.1rem;
    color: #c77dff;
    margin-right: 6px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px #c77dff88);
}
.rule-text {
    color: #f0f0f0;
    font-weight: 500;
}
.important-card {
    background: linear-gradient(90deg,#ffb34733,#ff696133);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255,105,97,0.13);
    padding: 24px 28px;
    margin-bottom: 38px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 1.15rem;
    border: 2px solid #ff6961;
}
.important-icon {
    font-size: 2.1rem;
    color: #ff6961;
    margin-right: 6px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px #ff696188);
}
.reguli-title {
    font-size:2.7rem;
    font-weight:900;
    letter-spacing:1px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    background:linear-gradient(90deg,#c77dff,#6c63ff);
    background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-shadow:0 2px 18px #c77dff99;
}
.reguli-title-icon {
    font-size:2.2rem;
}
.ip-highlight {
    color:#c77dff;
    font-weight:700;
}
.ip-port {
    font-size:0.95em;
    color:#aaa;
}
.curent-highlight {
    color: #6698FF;
}
.legal-title {
    color: #6698FF;
    font-size: 28px;
    font-weight: 700;
    text-decoration: underline;
}
.legal-white {
    color: white;
}
.legal-gray {
    color: gray;
}
.email-highlight {
    color: #c77dff;
    cursor: pointer;
    text-decoration: underline;
}
.email-bubble {
    display:none;
    position: absolute;
    left: 0;
    top: 110%;
    background: #c77dff;
    color: #fff;
    padding: 12px 5px 12px 18px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(199,125,255,0.25);
    font-size: 1rem;
    z-index: 9999;
    min-width: 180px;
    max-width: 90vw;
    transition: opacity 0.3s;
    opacity: 0;
    align-items: center;
}
.bubble-close {
    margin-left:5px;
    cursor:pointer;
    font-weight:bold;
    color:#fff;
    background:rgba(0,0,0,0.12);
    border-radius:50%;
    width:22px;
    height:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.footer-white {
    color: white;
}
.footer-highlight {
    color: #8EC0FF;
}
.footer-link {
    color: #483D8B;
    font-size: smaller;
}
.footer-gray {
    color:gray;
}
.fade-in {
    opacity: 0;
    animation: fadeInTitle 1.2s ease-out forwards;
}
@keyframes fadeInTitle {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}
