.euphoria-cookie-consent[hidden],
.euphoria-cookie-settings[hidden] {
    display: none !important;
}

.euphoria-cookie-consent {
    position: fixed;
    z-index: 10000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    color: #363636;
    font-family: Arial, "微軟正黑體", sans-serif;
}

.euphoria-cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 22px 24px;
    border: 1px solid rgba(131, 120, 228, 0.35);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(27, 19, 48, 0.22);
}

.euphoria-cookie-consent__copy {
    padding-right: 28px;
}

.euphoria-cookie-consent__copy h2 {
    margin: 0 0 6px;
    color: #6e51a9;
    font-size: 1.1rem;
    line-height: 1.4;
}

.euphoria-cookie-consent__copy p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
}

.euphoria-cookie-consent__copy a {
    color: #335acb;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.euphoria-cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.euphoria-cookie-consent__button,
.euphoria-cookie-settings {
    appearance: none;
    border: 2px solid #6e51a9;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.euphoria-cookie-consent__button {
    min-width: 92px;
    padding: 8px 14px;
    font-size: 0.85rem;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.euphoria-cookie-consent__button:hover {
    transform: translateY(-2px);
}

.euphoria-cookie-consent__button--accept {
    color: #fff;
    background: #6e51a9;
}

.euphoria-cookie-consent__button--reject {
    color: #6e51a9;
    background: #fff;
}

.euphoria-cookie-settings {
    position: fixed;
    z-index: 9999;
    right: 0px;
    bottom: 30px;
    padding: 5px 5px 5px 10px;
    color: #fff;
    background: #6e51a9;
    box-shadow: 0 4px 16px rgba(27, 19, 48, 0.2);
    border-radius: 999px 0 0 999px;
    font-size: 13px;
}

@media (max-width: 720px) {
    .euphoria-cookie-consent {
        right: 8px;
        bottom: 8px;
        left: 8px;
    }

    .euphoria-cookie-consent__content {
        display: block;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .euphoria-cookie-consent__copy {
        padding-right: 0;
    }

    .euphoria-cookie-consent__copy h2 {
        margin-bottom: 3px;
        font-size: 1rem;
        line-height: 1.35;
    }

    .euphoria-cookie-consent__copy p {
        font-size: 0.8rem;
        line-height: 1.55;
    }

    .euphoria-cookie-consent__actions {
        flex-wrap: nowrap;
        gap: 8px;
        margin-top: 10px;
    }

    .euphoria-cookie-consent__button {
        flex: 1 1 50%;
        min-width: 0;
        min-height: 40px;
        padding: 6px 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .euphoria-cookie-consent__button {
        transition: none;
    }
}