﻿.coupon-page-container {
    display: flex;
    flex-direction: column;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #FEF200 0%, #FFD300 100%);
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.coupon-logo {
    margin-bottom: 30px;
    text-align: center;
}

.coupon-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coupon-card {
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.coupon-card:hover {
    border-color: #4CAF50;
}

.coupon-card.selected {
    border-color: #4CAF50;
    background-color: #c0eecd;
}

.coupon-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.coupon-details-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.coupon-icon img {
    height: 262px;
}

.coupon-title {
    font-weight: 600;
    font-size: 16px;
}

.coupon-description {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.coupon-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.coupon-app-container {
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    min-height: calc(100vh - 20px);
}

.coupon-item-container {
    height: 380px;
    overflow-y: auto;
}

.coupon-result-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.coupon-result-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.coupon-result-card span {
    font-size: 20px;
}

.depa-logo-group {
    text-align: center;
    width: 100%;
    margin-top: -20px;
}

.depa-logo-group img {
    width: 30%;
}

@media (max-width: 780px) {
    .depa-logo-group img {
        width: 50%;
    }
}

@media (max-width: 580px) {
}

@media (max-width: 520px) {
}

@media (max-width: 450px) {

    .depa-logo-group img {
        width: 100%;
    }
}

@media (max-width: 380px) {
}
