.gacha-notice-error {
    background-color: #fbe9e7;
    color: #c62828;
    border: 1px solid #ffccbc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: center;
}

.gacha-notice-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: center;
}

.gacha-ticket-cover.horizontal-tear {
    cursor: ew-resize;
    overflow: hidden;
    position: relative; /* For pseudo-element positioning */
}

/* Ichiban Kuji style perforated line */
.gacha-ticket-cover.horizontal-tear::before {
    content: '';
    position: absolute;
    left: 40px; /* Position of the line from the left */
    top: 0;
    bottom: 0;
    width: 3px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.7) 5px,
        transparent 5px,
        transparent 10px
    );
}

.gacha-ticket-text {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}