.r33-contact-module h2 {
    color: #e6e6e6;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.r33-contact-module {
    background: #1f1f1f;
    border-radius: 8px;
    padding: 24px;
    color: #e6e6e6;
}

.r33-field-row {
    margin-bottom: 18px;
}

.r33-field-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(199,199,199,0.85);
}

.r33-field-row input[type="text"] {
    width: 100%;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    color: #e6e6e6;
}

.r33-field-row input::placeholder {
    color: rgba(199,199,199,0.45);
}

.r33-field-row input:focus {
    outline: none;
    border-color: #d1b36b;
    box-shadow: 0 0 0 1px rgba(209,179,107,0.3);
}

.r33-save-button,
.r33-upgrade-button {
    background: #d1b36b;
    color: #111;
    padding: 10px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.r33-save-button:hover,
.r33-upgrade-button:hover {
    background: #e2c781;
}

.upgrade-message {
    color: #e2c781;
    margin-bottom: 15px;
}

.r33-locked input {
    opacity: 0.5;
    pointer-events: none;
}

.r33-locked-badge {
    background: #d1b36b;
    color: #111;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 6px;
}

.r33-success-message {
    display: none;
    margin-top: 12px;
    color: #7fdc7f;
    font-size: 14px;
}

.r33-video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.r33-video-trigger {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    text-decoration: none;
}

.r33-video-poster {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.r33-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    margin-left: -34px;
    margin-top: -34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 28px;
    line-height: 68px;
    text-align: center;
    pointer-events: none;
}

.r33-video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.82);
    z-index: 99999;
}

.r33-video-modal.is-open {
    display: flex;
}

.r33-video-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.r33-video-modal__inner {
    width: 100%;
    background: #000;
}

.r33-video-modal__inner video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    background: #000;
}

.r33-video-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 26px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

body.r33-video-modal-open {
    overflow: hidden;
}