body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
}

.section {
    margin-bottom: 40px;
}

form {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
}

input[type="text"] {
    padding: 8px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    padding: 8px 15px;
    border: none;
    background-color: #0073e6;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #005bb5;
}

.videos, .instagram {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

iframe, img {
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.instagram img {
    width: 200px;
    height: auto;
    border: 2px solid #ddd;
    transition: transform 0.3s ease;
}

.instagram img:hover {
    transform: scale(1.1);
}

.login-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e1306c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #b71f5c;
}

.youtube-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.youtube-form label {
    font-weight: bold;
    font-size: 16px;
}

.youtube-form input[type="text"] {
    padding: 10px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: border 0.3s ease;
}

.youtube-form input[type="text"]:focus {
    border-color: #0073e6;
    outline: none;
}

.youtube-form button {
    padding: 10px 15px;
    border: none;
    background-color: #0073e6;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.youtube-form button:hover {
    background-color: #005bb5;
    transform: scale(1.05);
}

.tiktok-videos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tiktok-video {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    width: 220px;
}

.tiktok-video img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.tiktok-video img:hover {
    transform: scale(1.05);
}

.tiktok-video a {
    display: block;
    margin-top: 5px;
    font-weight: bold;
    color: #E1306C;
    text-decoration: none;
}

.tiktok-video a:hover {
    text-decoration: underline;
}
