/* Base Reset */
body, h1, h2, p, a, iframe {
    margin: 0;
    padding: 0;
    font-family: "Comic Sans MS", "Arial", sans-serif;
}

/* Body Styling */
body {
    background-color: #ffcc99;
    color: #000000;
    text-align: center;
}

/* Header */
.header {
    background-color: #663399;
    color: #ffffff;
    padding: 20px;
    border-bottom: 5px solid #ff6699;
}
.header h1 {
    font-size: 2.5em;
    text-shadow: 2px 2px #ff0000;
}

/* Marquee */
.marquee {
    color: #ffcc00;
    font-weight: bold;
    background-color: #333333;
    border: 2px dashed #ff6699;
    padding: 5px;
    margin: 10px 0;
    border-radius: 10px; /* Rounded corners */
}

/* Navigation */
.nav {
    background-color: #ff6699;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    margin: 5px;
    border: 2px solid #ffffff;
    background-color: #333333;
    text-align: center;
    border-radius: 5px; /* Slightly rounded corners */
}
.nav-link:hover {
    background-color: #ffcc00;
    color: #000000;
}
.nav-link.active {
    background-color: #ffcc00;
    color: #000000;
}

/* Content Area */
.content {
    margin: 20px;
    /* gap: 40px; */
    padding: 10px;
    padding-top: 0px;
    border: 3px double #663399;
    background-color: #ffffff;
    border-radius: 10px; /* Rounded edges */
}
.content h2 {
    color: #663399;
    font-size: 2em;
    margin-bottom: 10px;
    margin-top: 5px;
}
.content img {
    border-radius: 4px;
}
/* Streams */
.streams {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.stream {
    border: 3px solid #ff6699;
    padding: 10px;
    width: calc(100% - 40px); /* Default width for small screens */
    max-width: 300px; 
    background-color: #f4f4f4;
    box-sizing: border-box;
    border-radius: 10px; /* Rounded edges */
}
.stream iframe {
    width: 100%;
    /* height: 200px; */
    margin-bottom: 10px;
    border-radius: 5px; /* Slightly rounded iframe */
}
.stream p {
    font-size: 1.1em;
    font-weight: bold;
    color: #663399;
}
.stream a {
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border-top: 5px solid #ff6699;
}
.footer img {
    margin-top: 10px;
    width: 150px;
    height: auto;
    border-radius: 10px; /* Rounded image edges */
}

/* Profile Page Styles */
.profile h2 {
    color: #663399;
    font-size: 2em;
    margin-bottom: 20px;
}

.live-stream, .live-streamer  {
    position: relative;
    border: 3px solid #ff6699;
    background-color: black;
    border-radius: 10px; /* Rounded edges */
}

.live-stream iframe, .live-streamer iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px; /* Slightly rounded iframe */
}

.bio {
    border: 3px double #663399;
    padding: 20px;
    padding-top: 5px;
    background-color: #f4f4f4;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px; /* Rounded edges */
}
.bio h3 {
    color: #ff6699;
    font-size: 1.5em;
    margin-bottom: 10px;
    margin-top: 10px;
}
.bio ul {
    list-style-type: disc;
    margin-left: 0px;
    color: #663399;
}
.bio ul li {
    margin-bottom: 10px;
}
.bio p {
    color: #000000;
    margin-top: 10px;
}
/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.pagination a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border: 2px solid #ffffff;
    background-color: #ff6699;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
}
.pagination a.active {
    background-color: #ffcc00;
    color: #000000;
}
.pagination a:hover {
    background-color: #ffcc00;
    color: #000000;
}

.open-chat-button {
    cursor: pointer;
    display: inline-block;
    padding: 15px 25px;
    margin: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    background-color: #ff6699;
    text-decoration: none;
    text-align: center;
    border: 3px solid #ffffff;
    border-radius: 10px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add some depth */
}

.open-chat-button:hover {
    background-color: #ffcc00;
    color: #000000;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5); /* Enhanced shadow on hover */
}

.pro-image {
    display: block;
    margin: 20px auto;
    margin-bottom: 0px;
    width: 300px; 
    height: 250px;
    border-radius: 10px; /* Optional: Rounded corners for the image */
}
.live-stream a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: none;
    text-decoration: none;
    background-color: transparent;
  }
  .live-streamer a {
    position: absolute;
    top: 0;
    left: 25%;
    width: 65%;
    right: 10%;
    height: 70%;
    border: none;
    text-decoration: none;
    background-color: transparent;
    z-index: 10;
  }
/* Responsive Design for Pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 5px;
        margin: 10px 0;
        flex-wrap: wrap;
    }
    .pagination a {
        padding: 8px 12px;
        font-size: 0.9em;
    }
}

/* Responsive Design for Profile */
@media (max-width: 768px) {
    .bio {
        padding: 10px;
    }
    .bio ul {
        margin-left: 10px;
    }
    .bio p, .bio ul li {
        font-size: 0.9em;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    .marquee {
        font-size: 0.9em;
    }

    .content h2 {
        font-size: 1.5em;
    }
    .content {
        padding: 5px;
        margin: 10px;
    }
    .stream {
        width: 100%; /* Full width for small screens */
        max-width: 100%;
    }
    .streams {
        gap: 10px;
    }
    .nav {
        flex-direction: column;
    }
    .nav-link {
        width: auto; /* Full width navigation links */
    }
}
