.ticket-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: none;
    background: linear-gradient( 135deg, #9333ea, #2563eb );
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 0 20px rgba(147,51,234,.6), 0 0 50px rgba(37,99,235,.4);
    transition: all .3s ease;
}

.ticket-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(147,51,234,.9), 0 0 70px rgba(37,99,235,.6);
}

.ticket-window {
    position: fixed;
    bottom: 115px;
    right: 25px;
    width: 420px;
    max-width: calc(100vw - 20px);
    background: #0f172a;
    color: white;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 0 30px rgba(147,51,234,.25), 0 0 80px rgba(37,99,235,.15);
    z-index: 999999;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ticket-header h3 {
    margin: 0;
}

.ticket-header p {
    margin: 3px 0 0;
    color: #94a3b8;
    font-size: 13px;
}

.close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.ticket-window input,
.ticket-window textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    color: white;
    box-sizing: border-box;
}

.ticket-window input:focus,
.ticket-window textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59,130,246,.5);
}

.ticket-window textarea {
    min-height: 140px;
}

.send-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient( 135deg, #9333ea, #2563eb );
}

.send-btn:hover {
    transform: translateY(-2px);
}
