/* Base Styles */
:root {
    --primary-color: #0073e6;
    --hover-color: #005bb5;
    --text-color: #fff;
    --link-bg: rgba(0, 0, 0, 0.5); /* Darker semi-transparent black */
    --link-hover-bg: rgba(0, 0, 0, 0.7); /* Even darker on hover */
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc, #00b4db, #00d4ff);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
}

.profile-img {
    width: 100px; /* Smaller on mobile */
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

h1 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem; /* Smaller on mobile */
}

p {
    margin-bottom: 1.5rem; /* Reduced margin for mobile */
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem; /* Smaller on mobile */
}

h4 {
    margin: 1.25rem 0 0.75rem; /* Reduced margin for mobile */
    font-size: 1.1rem; /* Smaller on mobile */
    color: #ffffff; /* White for better readability */
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0; /* Reduced margin for mobile */
    padding: 0.75rem;
    background: var(--link-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 0.9rem; /* Smaller on mobile */
}

.link:hover {
    background: var(--link-hover-bg);
    transform: translateY(-3px);
}

.link i {
    margin-right: 0.5rem; /* Reduced margin for mobile */
    font-size: 1rem; /* Smaller on mobile */
}

/* Icon Colors */
.fa-coffee { color: #ff5e5e; } /* Kofi */
.fa-telegram { color: #0088cc; } /* Telegram */
.fa-comment { color: #1da1f2; } /* Bluesky */
.fa-twitter { color: #1da1f2; } /* Twitter */
.fa-heart { color: #ff0084; } /* Fetlife */
.fa-video { color: #ff0000; } /* Murrtube */
.fa-film { color: #ff6f61; } /* Clips Fatale */
.fa-handshake { color: #4caf50; } /* Pain Palace */

.footer {
    margin-top: 1.5rem; /* Reduced margin for mobile */
    font-size: 0.8rem; /* Smaller on mobile */
    color: rgba(255, 255, 255, 0.7);
}

/* 18+ Warning Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-content h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-content button {
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.modal-content button#confirmAge {
    background: var(--primary-color);
    color: var(--text-color);
}

.modal-content button#exitSite {
    background: #ff5e5e;
    color: var(--text-color);
}

/* Cookie Consent Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-color);
    padding: 1rem;
    text-align: center;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-banner button {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    .profile-img {
        width: 80px; /* Even smaller on very small screens */
        height: 80px;
    }
    h1 {
        font-size: 1.5rem; /* Smaller on very small screens */
    }
    p {
        font-size: 0.8rem; /* Smaller on very small screens */
    }
    h4 {
        font-size: 1rem; /* Smaller on very small screens */
    }
    .link {
        font-size: 0.85rem; /* Smaller on very small screens */
    }
    .link i {
        font-size: 0.9rem; /* Smaller on very small screens */
    }
}