.sw-support-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.sw-support-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6e48aa, #9d50bb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.sw-support-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.sw-support-icon {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.sw-support-window {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: bottom right;
    z-index: 1;
}

.sw-support-window.active {
    width: 350px;
    height: auto;
    min-height: 400px;
    opacity: 1;
    padding: 20px;
}

.sw-support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sw-support-header h3 {
    margin: 0;
    color: #6e48aa;
    font-size: 18px;
}

.sw-close-button {
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.sw-close-button:hover {
    color: #6e48aa;
}

.sw-form-group {
    margin-bottom: 15px;
}

.sw-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.sw-form-group input,
.sw-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border 0.3s;
}

.sw-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.sw-form-group input:focus,
.sw-form-group textarea:focus {
    border-color: #9d50bb;
    outline: none;
}

.sw-submit-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #6e48aa, #9d50bb);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.sw-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 72, 170, 0.4);
}

.sw-success-message {
    display: none;
    text-align: center;
    padding: 20px;
}

.sw-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
}

.sw-success-message h3 {
    color: #6e48aa;
    margin-bottom: 10px;
}

.sw-success-message p {
    color: #666;
}

@media (max-width: 480px) {
    .sw-support-container {
        bottom: 20px;
        right: 20px;
    }
    
    .sw-support-button {
        width: 50px;
        height: 50px;
    }
    
    .sw-support-window.active {
        width: calc(100vw - 40px);
        right: 20px;
    }
}