/* About Page Styles */
.about {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1A1A1A, #121212);
}

.about h1 {
    font-size: 2.5rem;
    color: #FF69B4;
    margin-bottom: 20px;
    animation: slideIn 1s ease-in-out;
}

.about p {
    font-size: 1.1rem;
    color: #CCCCCC;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.owner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.owner-buttons button {
    background-color: rgba(255, 105, 180, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    color: #FFFFFF;
    font-weight: bold;
    border: 1px solid rgba(255, 105, 180, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.owner-buttons button:hover {
    background-color: rgba(255, 20, 147, 0.5);
    transform: translateY(-5px);
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Box */
.popup {
    background-color: rgba(26, 10, 26, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 105, 180, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.popup-overlay.active .popup {
    transform: scale(1);
    opacity: 1;
}

.popup h2 {
    color: #FF69B4;
    margin-bottom: 10px;
}

.popup p {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.popup .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.popup .social-links a {
    color: #FF69B4;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.popup .social-links a:hover {
    color: #FF1493;
}

.popup .close-btn {
    background-color: #FF69B4;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup .close-btn:hover {
    background-color: #FF1493;
}

/* Watermark */
.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 {
    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); }
}

.watermark:hover .bladeop-head {
    animation: spin 1s infinite linear;
}