.freegiftzone-scratch-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding-bottom: 10px;
}

.freegiftzone-scratch-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    overflow: hidden;
}

.freegiftzone-card-image {
    flex: 0 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freegiftzone-card-image img {
    max-width: 100%;
    height: 90px;
}

.freegiftzone-scratch-area {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.freegiftzone-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.freegiftzone-code-text {
    font-weight: bold;
    text-align: center;
    color: #333;
    word-break: break-word;
}

.freegiftzone-notice-text {
    font-size: 10px;
    text-align: center;
    margin-top: 5px;
}

.freegiftzone-main-button-sc {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.freegiftzone-copy-button {
    padding: 5px 15px;
    border: none;
    border-radius: 25px;
    background-color: #888;
    color: #fff;
    font-size: 10px;
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    transition: background-color 0.3s, opacity 0.3s;
}

.freegiftzone-copy-button.enabled {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.freegiftzone-copy-button.enabled:hover {
    background-color: #28a745;
}

.freegiftzone-progress-bar-container {
    width: 80%;
    height: 2px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 5px;
}

.freegiftzone-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #28a745;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.freegiftzone-scratch-area canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
}
