.aw-wrapper {
    margin: 20px 0;
}
.aw-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.aw-buttons button {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}
.aw-buttons button:hover {
    transform: translateY(-2px);
}
.aw-buttons .aw-voice { background: #4CAF50; color: white; }
.aw-buttons .aw-video { background: #2196F3; color: white; }
.aw-buttons .aw-chat { background: #FF9800; color: white; }
.aw-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 500px;
    background: #1a1a2e;
    border-radius: 16px;
    z-index: 999999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.aw-header {
    background: #16213e;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: bold;
}
.aw-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
.aw-video-box {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #0f0f1a;
}
.aw-local, .aw-remote {
    width: 50%;
    height: 240px;
    background: #2a2a3e;
    border-radius: 12px;
    overflow: hidden;
}
.aw-local video, .aw-remote video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aw-chat-box {
    height: 350px;
    display: flex;
    flex-direction: column;
    background: #1e1e2e;
}
.aw-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    color: white;
}
.aw-input {
    margin: 10px;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 20px;
    background: #2a2a3e;
    color: white;
}
.aw-send {
    margin: 0 10px 10px;
    padding: 10px;
    background: #2196F3;
    border: none;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}
.aw-controls {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #252535;
}
.aw-controls button {
    padding: 6px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
.aw-mute, .aw-video-off { background: #444; color: white; }
.aw-end { background: #f44336; color: white; }
@media (max-width: 768px) {
    .aw-panel { width: 100%; bottom: 0; right: 0; border-radius: 16px 16px 0 0; }
    .aw-local, .aw-remote { height: 180px; }
}