.videovip-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.videovip-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    position: relative;
}

.videovip-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.videovip-title {
    margin: 0 0 20px 0;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.videovip-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.videovip-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.videovip-stat-item:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.videovip-stat-label {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 500;
}

.videovip-stat-value {
    font-size: 20px;
    font-weight: 700;
}

.videovip-credit-tip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border-left: 4px solid #ffc107;
    padding: 18px 25px;
    margin: 25px 30px;
    border-radius: 12px;
    color: #856404;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.videovip-credit-tip > span {
    flex: 1;
}

.videovip-credit-tip svg {
    flex-shrink: 0;
    color: #ffc107;
    width: 22px;
    height: 22px;
}

.videovip-operate-text {
    padding: 15px;
    margin: 30px 30px 30px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    line-height: 1.8;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.videovip-operate-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.videovip-operate-text * {
    max-width: 100%;
}

.videovip-player-section {
    margin: 30px 30px 30px 30px;
}

.videovip-player-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px dashed #dee2e6;
    border-radius: 16px;
    color: #6c757d;
    transition: all 0.3s;
}

.videovip-player-placeholder:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eefc 100%);
}

.videovip-player-placeholder svg {
    color: #adb5bd;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
}

.videovip-player-placeholder p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #495057;
}

.videovip-form {
    padding: 0 30px 30px 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.videovip-form-group {
    margin-bottom: 30px;
}

.videovip-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.videovip-label svg {
    flex-shrink: 0;
    color: #667eea;
    width: 18px;
    height: 18px;
}

.videovip-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.videovip-input,
.videovip-select {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f8f9fa;
    font-weight: 500;
    box-sizing: border-box;
}

.videovip-input:focus,
.videovip-select:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.videovip-input::placeholder {
    color: #adb5bd;
}

.videovip-clear-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 53, 69, 0.1);
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #dc3545;
    transition: all 0.3s;
    display: none;
    border-radius: 8px;
}

.videovip-input:not(:placeholder-shown) + .videovip-clear-btn {
    display: block;
}

.videovip-clear-btn:hover {
    background: #dc3545;
    color: #fff;
}

.videovip-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%236c757d' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.videovip-form-actions {
    margin-top: 35px;
}

.videovip-button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.videovip-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.videovip-button:active {
    transform: translateY(-1px);
}

.videovip-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.videovip-button svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.videovip-result {
    margin: 0 30px 30px 30px;
}

.videovip-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #f5c6cb;
    padding: 35px;
    border-radius: 16px;
    color: #721c24;
    animation: slideIn 0.4s ease-out;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.videovip-error h3 {
    margin: 0 0 20px 0;
    color: #721c24;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.videovip-error h3::before {
    content: '✗';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.videovip-error p {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.videovip-retry-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.videovip-retry-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.videovip-no-permission {
    text-align: center;
    padding: 80px 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.videovip-no-permission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-radius: 50%;
    margin-bottom: 25px;
    color: #dc3545;
}

.videovip-no-permission h3 {
    margin: 0 0 15px 0;
    color: #721c24;
    font-size: 26px;
    font-weight: 700;
}

.videovip-no-permission p {
    margin: 0 0 25px 0;
    color: #856404;
    font-size: 17px;
    line-height: 1.6;
}

.videovip-login-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.videovip-login-btn:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.videovip-loading .videovip-input,
.videovip-loading .videovip-select {
    opacity: 0.6;
    pointer-events: none;
}

.videovip-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.videovip-player-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease-out;
}

.videovip-player-wrapper iframe {
    display: block;
    width: 100%;
    height: 550px;
    border: none;
}

.videovip-player-wrapper-inner {
    position: relative;
    width: 100%;
    height: 550px;
}

.videovip-video-container {
    width: 100%;
    height: 100%;
}

.videovip-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.videovip-ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    animation: fadeIn 0.3s ease-out;
}

.videovip-ad-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: auto;
}

.videovip-ad-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #333;
    font-size: 14px;
}

.videovip-ad-close:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    transform: rotate(90deg);
}

.videovip-ad-close-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.videovip-ad-countdown {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.videovip-ad-inner {
    line-height: 1.6;
}

.videovip-ad-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.videovip-ad-inner * {
    max-width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.videovip-login-link {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.videovip-login-link:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .videovip-container {
        margin: 15px;
        border-radius: 16px;
    }
    
    .videovip-header {
        padding: 30px 20px;
    }
    
    .videovip-title {
        font-size: 24px;
    }
    
    .videovip-stats {
        gap: 12px;
    }
    
    .videovip-stat-item {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .videovip-stat-value {
        font-size: 18px;
    }
    
    .videovip-credit-tip {
        margin: 20px;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .videovip-operate-text {
        margin: 0 20px 25px 20px;
        padding: 25px 20px;
    }
    
    .videovip-player-section {
        margin: 20px 20px 25px 20px;
    }
    
    .videovip-player-placeholder {
        padding: 60px 30px;
    }
    
    .videovip-player-placeholder svg {
        width: 60px;
        height: 60px;
    }
    
    .videovip-player-placeholder p {
        font-size: 16px;
    }
    
    .videovip-form {
        padding: 0 20px 25px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .videovip-form-group {
        margin-bottom: 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .videovip-input,
    .videovip-select {
        padding: 14px 16px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .videovip-button {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .videovip-result {
        margin: 0 20px 20px 20px;
    }
    
    .videovip-error {
        padding: 25px 20px;
    }
    
    .videovip-error h3 {
        font-size: 20px;
    }
    
    .videovip-no-permission {
        padding: 60px 30px;
    }
    
    .videovip-no-permission-icon {
        width: 80px;
        height: 80px;
    }
    
    .videovip-no-permission h3 {
        font-size: 22px;
    }
    
    .videovip-no-permission p {
        font-size: 15px;
    }
    
    .videovip-player-wrapper iframe {
        height: 450px;
    }
    
    .videovip-ad-content {
        padding: 30px;
    }
    
    .videovip-ad-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .videovip-header {
        padding: 25px 15px;
    }
    
    .videovip-title {
        font-size: 20px;
    }
    
    .videovip-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .videovip-credit-tip {
        margin: 15px;
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .videovip-operate-text {
        margin: 0 15px 20px 15px;
        padding: 20px 15px;
    }
    
    .videovip-player-section {
        margin: 15px 15px 20px 15px;
    }
    
    .videovip-player-placeholder {
        padding: 50px 20px;
    }
    
    .videovip-player-placeholder svg {
        width: 50px;
        height: 50px;
    }
    
    .videovip-player-placeholder p {
        font-size: 14px;
    }
    
    .videovip-form {
        padding: 0 15px 20px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .videovip-form-group {
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .videovip-input,
    .videovip-select {
        padding: 12px 14px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .videovip-button {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .videovip-player-wrapper iframe {
        height: 350px;
    }
}

.videovip-recharge-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.videovip-recharge-btn:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.videovip-recharge-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.videovip-recharge-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videovip-recharge-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.videovip-recharge-modal-content {
    position: relative;
    width: 85%;
    max-width: 450px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.videovip-recharge-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.videovip-recharge-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.videovip-recharge-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
}

.videovip-recharge-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.videovip-recharge-modal-close svg {
    width: 20px;
    height: 20px;
}

.videovip-recharge-modal-body {
    padding: 30px;
}

.videovip-recharge-form-group {
    margin-bottom: 25px;
}

.videovip-recharge-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.videovip-recharge-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f8f9fa;
    font-weight: 500;
}

.videovip-recharge-input:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.videovip-recharge-input::placeholder {
    color: #adb5bd;
}

.videovip-recharge-submit {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.videovip-recharge-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.videovip-recharge-submit:active {
    transform: translateY(0);
}

.videovip-recharge-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.videovip-recharge-submit svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.videovip-recharge-modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.videovip-recharge-modal-footer p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .videovip-recharge-modal-content {
        width: 90%;
        max-width: 400px;
    }
    
    .videovip-recharge-modal-header {
        padding: 20px 25px;
    }
    
    .videovip-recharge-modal-header h3 {
        font-size: 20px;
    }
    
    .videovip-recharge-modal-body {
        padding: 25px;
    }
    
    .videovip-recharge-input {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .videovip-recharge-submit {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .videovip-recharge-modal-footer {
        padding: 18px 25px;
    }
}

@media (max-width: 480px) {
    .videovip-recharge-modal-content {
        width: 88%;
        max-width: 350px;
    }
    
    .videovip-recharge-modal-header {
        padding: 18px 20px;
    }
    
    .videovip-recharge-modal-header h3 {
        font-size: 18px;
    }
    
    .videovip-recharge-modal-body {
        padding: 20px;
    }
    
    .videovip-recharge-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .videovip-recharge-submit {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .videovip-recharge-modal-footer {
        padding: 15px 20px;
    }
    
    .videovip-recharge-modal-footer p {
        font-size: 12px;
    }
}

.videovip-weixin-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videovip-weixin-login-modal-content {
    position: relative;
    width: 85%;
    max-width: 450px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

.videovip-weixin-login-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.videovip-weixin-login-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.videovip-weixin-login-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
}

.videovip-weixin-login-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.videovip-weixin-login-modal-close svg {
    width: 20px;
    height: 20px;
}

.videovip-weixin-login-modal-body {
    padding: 30px;
}

@media (max-width: 768px) {
    .videovip-weixin-login-modal-content {
        width: 90%;
        max-width: 400px;
    }
    
    .videovip-weixin-login-modal-header {
        padding: 20px 25px;
    }
    
    .videovip-weixin-login-modal-header h3 {
        font-size: 20px;
    }
    
    .videovip-weixin-login-modal-body {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .videovip-weixin-login-modal-content {
        width: 88%;
        max-width: 350px;
    }
    
    .videovip-weixin-login-modal-header {
        padding: 18px 20px;
    }
    
    .videovip-weixin-login-modal-header h3 {
        font-size: 18px;
    }
    
    .videovip-weixin-login-modal-body {
        padding: 20px;
    }
}

.erphp-weixin-scan-logged-in {
    text-align: center;
    padding: 40px 20px;
}

.erphp-weixin-scan-logged-in p {
    font-size: 16px;
    color: #667eea;
    font-weight: 500;
    margin: 0;
}
