
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #f8f8f8;
}

body {
    background-color: #111;
    color: #f2f2f2;
    line-height: 1.8;
}

header {
    background: linear-gradient(135deg, #ff3366, #ff6699);
    padding: 20px;
    text-align: center;
}

.logo img {
    height: 60px;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.8em;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

h2 {
    color: #ff6699;
    font-size: 2em;
    margin: 20px 0 10px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

h3 {
    color: #ff99cc;
    font-size: 1.6em;
    margin: 15px 0;
    font-weight: bold;
}

main {
    padding: 30px;
    background-color: #222;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.5);
}

.cam-section, .girls-info, .signup {
    background: #292929;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cam-section:hover, .girls-info:hover, .signup:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(255, 51, 102, 0.7);
}

p {
    margin: 12px 0;
    font-size: 1.1em;
    line-height: 1.7;
}

strong {
    color: #ff99cc;
    font-weight: bold;
}

.iframe-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    border: 4px solid #ff6699;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(255, 102, 153, 0.6);
}

.signup p {
    font-weight: bold;
    color: #ffd1e8;
    font-size: 1.15em;
}

footer {
    background: #111;
    color: #bbb;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    border-top: 3px solid #ff3366;
}

footer p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
