* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: white;
    color: #333;
    line-height: 1.6;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 32px;
    font-weight: bold;
}

.logo-o {
    color: #0066cc;
}

.logo-text {
    color: #ff6600;
}

.header-right {
    text-align: right;
}

.social-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.social-btn {
    padding: 5px 10px;
    background: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

.language-select {
    padding: 5px;
    border: 1px solid #ddd;
}

.online-count {
    color: #0066cc;
    font-size: 14px;
    font-weight: bold;
}

/* Main Content */
.main-content {
    margin: 30px 0;
}

.mobile-note {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.info-section {
    margin-bottom: 30px;
}

.info-section p {
    margin-bottom: 15px;
}

.info-section strong {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.monitoring-banner {
    background: #0066cc;
    color: white;
    padding: 15px;
    margin: 20px 0;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-icon {
    background: white;
    color: #0066cc;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.adult-disclaimer {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.chat-init-section {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}

.interests-section {
    flex: 1;
}

.interests-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.interests-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin-bottom: 10px;
}

.interest-example {
    color: #0066cc;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.play-icon {
    font-size: 12px;
}

.chat-buttons-section {
    flex: 1;
}

.chat-buttons-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.chat-type-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.chat-type-btn {
    padding: 15px 40px;
    background: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

.chat-type-btn:hover {
    background: #0052a3;
}

.unmoderated-link {
    color: #666;
    font-size: 12px;
    text-decoration: none;
}

.unmoderated-link:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #0066cc;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .wrapper {
        padding: 15px;
    }

    /* Header Mobile */
    .main-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
        gap: 15px;
    }

    .logo {
        font-size: 28px;
    }

    .header-right {
        width: 100%;
        text-align: left;
    }

    .social-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }

    .social-btn {
        padding: 4px 8px;
        font-size: 11px;
    }

    .language-select {
        font-size: 11px;
        padding: 4px;
    }

    .online-count {
        font-size: 12px;
        margin-top: 8px;
    }

    /* Content Mobile */
    .main-content {
        margin: 20px 0;
    }

    .mobile-note {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .info-section {
        margin-bottom: 20px;
    }

    .info-section p {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .info-section strong {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .monitoring-banner {
        padding: 12px;
        font-size: 16px;
        margin: 15px 0;
    }

    .warning-icon {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }

    .adult-disclaimer {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .chat-init-section {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }

    .interests-section label,
    .chat-buttons-section label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .interests-input {
        padding: 8px;
        font-size: 13px;
    }

    .interest-example {
        font-size: 13px;
    }

    .chat-type-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .chat-type-btn {
        padding: 12px 20px;
        font-size: 15px;
        width: 100%;
    }

    .unmoderated-link {
        font-size: 11px;
        display: block;
        margin-top: 10px;
    }

    /* Footer Mobile */
    .main-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 0;
        margin-top: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 10px;
    }

    .logo {
        font-size: 24px;
    }

    .main-content {
        margin: 15px 0;
    }

    .info-section p {
        font-size: 13px;
    }

    .monitoring-banner {
        font-size: 14px;
        padding: 10px;
    }

    .chat-type-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}
