/* General styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
}

/* Hero section */
.hero {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.profile {
    display: inline-block;
    text-align: center;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #ff005a;
    object-fit: cover;
    margin-bottom: 20px;
}

.follow-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff005a;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.follow-btn:hover {
    background-color: #00f0f5;
}

/* About section */
.about {
    padding: 20px;
    background-color: #1a1a1a;
    text-align: center;
}

/* Featured Videos */
.featured-videos {
    padding: 40px 20px;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
}

.featured-videos h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff005a;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tiktok-embed {
    flex: 1 1 calc(33% - 20px);
    max-width: 605px;
    min-width: 325px;
}

@media (max-width: 768px) {
    .tiktok-embed {
        flex: 1 1 100%;
    }
}
/* Contact Section */
.contact {
    padding: 40px 20px;
    text-align: center;
    background-color: #121212;
    border-top: 2px solid #333;
}

form {
    max-width: 600px; /* Limits the form width */
    margin: 0 auto; /* Centers the form horizontally */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers form elements */
    gap: 15px;
}

form input, form textarea {
    width: 100%; /* Ensures input fields span the full width of the form */
    max-width: 100%; /* Prevents them from exceeding the form's width */
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box; /* Includes padding in the element's width */
}

form textarea {
    resize: vertical; /* Allows resizing vertically only */
}

form button {
    width: auto;
    padding: 10px 20px;
    background-color: #ff005a;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    align-self: center; /* Centers the button */
}

form button:hover {
    background-color: #00f0f5;
}
    cursor: pointer;
    align-self: center;
    font-size: 1rem;
}

form button:hover {
    background-color: #00f0f5;
}

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

footer a {
    color: #00f0f5;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}