/* ================================ */
/* Body & Background */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #f0f0f0;
    position: relative;
    overflow-x: hidden;
}

/* Background icons pattern */
body::before {
    content: "💋🔥🖤💦🐾";
    position: fixed;
    top: 0;
    left: 0;
    font-size: 60px;
    opacity: 0.03;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    animation: floatIcons 60s linear infinite;
}

@keyframes floatIcons {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(-2000px) translateY(-500px) rotate(360deg); }
}

/* ================================ */
/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    z-index: 999;
    box-sizing: border-box;
    backdrop-filter: blur(6px);
}

.header-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.7rem;
    font-weight: bold;
    flex: 1;
    color: #ff416c;
}

/* Hamburger Button */
.menu-toggle {
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* ================================ */
/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px 60px 20px;
    z-index: 1;
    position: relative;
}

.animated-title {
    font-size: 3rem;
    color: #ff416c;
    font-weight: 700;
    animation: bounceText 2s infinite;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 650px;
    margin: 15px auto 25px;
}

.btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 65, 108, 0.5);
}

/* Hero Animation */
@keyframes bounceText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================ */
/* Rooms Section */
.rooms {
    padding: 50px 20px;
    text-align: center;
    background: #111;
}

.rooms h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff416c;
}

.room-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.room-bubble {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: #1c1c1c;
    color: #ff416c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(255, 65, 108, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.room-bubble i {
    font-size: 1.5rem;
}

.room-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 65, 108, 0.5);
    background: #ff416c;
    color: #fff;
}

/* ================================ */
/* Article Section */
.article-landing a,
.article-buttons .article-btn {
    display: inline-block;
    text-decoration: none;
    background: #1c1c1c;
    color: #ff416c;
    padding: 20px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(255,65,108,0.2);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.article-landing a:hover,
.article-buttons .article-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255,65,108,0.5);
    background: #ff416c;
    color: #fff;
}

/* Article Sections (Latest Updates) */
.article-sections {
    background-color: #1c1c1c;
    padding: 25px 20px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255,65,108,0.1);
}

.article-sections h3 {
    font-size: 1.5rem;
    color: #ff416c;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.article-sections ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.article-sections ul li a {
    text-decoration: none;
    color: #ff416c;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.article-sections ul li a:hover {
    background-color: #ff416c;
    color: #fff;
    transform: translateX(4px);
}

/* ================================ */
/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    background-color: #000;
    color: #fff;
}

footer span.paw {
    display: inline-block;
    margin: 0 5px;
    animation: bouncePaw 1.5s infinite;
}

@keyframes bouncePaw {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ================================ */
/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 70px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -3px 0 20px rgba(0,0,0,0.6);
}

.side-menu.open {
    right: 0;
}

.side-menu a {
    display: block;
    color: #ff416c;
    text-decoration: none;
    font-weight: bold;
    margin: 12px 0;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.side-menu a:hover {
    color: #fff;
    background: #ff416c;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* ================================ */
/* Responsive */
@media (max-width: 768px) {
    .room-grid { flex-direction: column; }
    .article-landing a { width: 100%; text-align: center; }
    .hero p { font-size: 1rem; }
    .hero { padding: 120px 15px 40px; }
}
/* ================================ */
/* Article Categories / Landing */
.article-landing {
    background: #1a1a1a; /* Dark slick background */
    padding: 40px 20px;
    margin: 50px auto;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(255, 65, 108, 0.2);
    text-align: center;
}

.article-landing h3 {
    font-size: 2rem;
    color: #ff416c;
    margin-bottom: 30px;
    font-weight: 700;
}

.article-landing a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #2a2a2a;
    color: #ff416c;
    font-weight: 600;
    padding: 18px 25px;
    margin: 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 65, 108, 0.2);
    font-size: 1.1rem;
}

.article-landing a i {
    font-size: 1.3rem;
}

.article-landing a:hover {
    background: #ff416c;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 65, 108, 0.5);
}

.article-landing p {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-landing a {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 15px;
    }
}
/* Generated Chatrooms Title */
.generated-rooms h3 {
    color: #ff416c;
    /* Neon pink accent */
    font-size: 2rem;
    /* Large, prominent title */
    font-weight: 700;
    /* Bold text */
    text-align: center;
    /* Centered on the page */
    margin-bottom: 30px;
    /* Space below the title */
    text-shadow: 0 0 8px #ff416c, 0 0 12px #ff6b81;
    /* Glow effect */
    letter-spacing: 1px;
    /* Slight spacing for style */
}
.article-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* space between text and icon */
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(255, 75, 43, 0.4);
    transition: transform 0.3s, box-shadow 0.3s, background 0.5s;
}

.article-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 75, 43, 0.5);
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

.article-btn i {
    font-size: 1.1rem;
}