/* Rules Page Styles */
.rules {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1A1A1A, #121212);
}

.rules h1 {
    font-size: 2.5rem;
    color: #FF69B4;
    margin-bottom: 20px;
    animation: slideIn 1s ease-in-out;
}

.rules ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.rules ul li {
    background-color: rgba(26, 10, 26, 0.8);
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 5px solid #FF69B4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rules ul li:hover {
    transform: translateX(10px);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* Watermark Styles */
.watermark {
    position: fixed;
    bottom: 10px;
    right: 10px;
    opacity: 0.7;
    font-size: 0.8rem;
    color: #CCCCCC;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1;
    transition: opacity 0.3s ease, background-color 0.3s ease, bottom 0.5s ease;
}

.watermark:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.watermark a {
    color: #FF69B4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.watermark a:hover {
    color: #FF1493;
}

/* BladeOP Head Animation */
.bladeop-head {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: transform 0.5s ease;
    animation: spin 5s infinite linear;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hover Effect on BladeOP Head */
.watermark:hover .bladeop-head {
    animation: spin 1s infinite linear;
}