/* Reset และ Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kanit', 'Sarabun', 'Prompt', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0460c9;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}


.wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    color: white;
    animation: fadeInDown 0.8s ease-out;
}

.logo-container {
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    letter-spacing: -0.01em;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-p {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25em;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
    position: relative;
}

.logo-ao {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-tang {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-lottery {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
    position: relative;
}

.logo-dot {
    color: white;
    font-size: 0.9em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-com {
    color: white;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 1rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero-section {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.subtitle {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Line Button */
.line-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.line-button {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: white;
    color: #1a1a1a;
    padding: 1.6rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    max-width: 520px;
    width: 100%;
}

.line-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 199, 85, 0.1), transparent);
    transition: left 0.5s;
}

.line-button:hover::before {
    left: 100%;
}

.line-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(6, 199, 85, 0.3);
    border-color: #06C755;
}

.line-button:active {
    transform: translateY(-2px) scale(1.02);
}

.line-icon {
    width: auto;
    height: auto;
    background: #06C755;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.line-icon svg {
    width: 48px;
    height: 48px;
}

.line-button-text {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.line-button-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.line-button-subtitle {
    font-size: 1rem;
    color: #06C755;
    font-weight: 500;
    line-height: 1.2;
}

/* Content Section */
.content-section {
    margin-bottom: 4rem;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease-out both;
}

.content-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.3;
}

.content-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 4px solid #0460c9;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: #f0f4f8;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0460c9 0%, #0350a8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(4, 96, 201, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.step-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.content-note {
    margin-top: 2rem;
    padding: 1.25rem;
    background: #fff9e6;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.content-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.content-note strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Details Section */
.details-section {
    margin-bottom: 4rem;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease-out both;
}

.details-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.details-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.details-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #f0f4f8;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    width: 32px;
    height: 32px;
    background: #E8F8F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.2);
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.detail-text {
    flex: 1;
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Prize Table Section */
.prize-table-section {
    margin-bottom: 4rem;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease-out both;
}

.prize-table-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.prize-table-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.prize-table-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.prize-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.prize-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.prize-header {
    background: #0460c9;
    color: white;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.prize-header:first-child {
    border-top-left-radius: 12px;
}

.prize-header:last-child {
    border-top-right-radius: 12px;
}

.prize-label {
    padding: 1.25rem 1.5rem;
    background: white;
    color: #2c3e50;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
}

.prize-detail {
    padding: 1.25rem 1.5rem;
    background: white;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
    text-align: right;
}

.prize-table tbody tr:last-child .prize-label,
.prize-table tbody tr:last-child .prize-detail {
    border-bottom: none;
}

.prize-table tbody tr:hover {
    background: #f8f9fa;
}

.prize-table tbody tr:hover .prize-label,
.prize-table tbody tr:hover .prize-detail {
    background: #f8f9fa;
}

.prize-note {
    margin-top: 2rem;
    padding: 1.25rem;
    background: #fff9e6;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.prize-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.prize-note strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Prize Types Section */
.prize-types-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 16px;
    border: 2px solid #2196F3;
}

.prize-types-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.prize-types-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.prize-type-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.prize-type-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prize-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.prize-type-description {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

/* Prize Payment Section */
.prize-payment-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 16px;
    border: 2px solid #FF9800;
}

.prize-payment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F57C00;
    margin-bottom: 1.5rem;
    text-align: center;
}

.prize-payment-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.prize-payment-table .prize-header {
    background: #FF9800;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    vertical-align: middle;
}

.prize-header-note {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-top: 0.25rem;
}

.prize-payment-table .prize-label {
    padding: 1rem;
    background: white;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    vertical-align: middle;
}

.prize-payment-table .prize-detail {
    padding: 1rem;
    background: white;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    vertical-align: middle;
}

.prize-payment-table tbody tr:last-child .prize-label,
.prize-payment-table tbody tr:last-child .prize-detail {
    border-bottom: none;
}

.prize-payment-table tbody tr:hover {
    background: #fff8f0;
}

.prize-payment-table tbody tr:hover .prize-label,
.prize-payment-table tbody tr:hover .prize-detail {
    background: #fff8f0;
}

/* Info Section */
.info-section {
    margin-bottom: 4rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
}

.info-section:nth-child(1) {
    animation-delay: 0.1s;
}

.info-section:nth-child(2) {
    animation-delay: 0.2s;
}

.info-section:nth-child(3) {
    animation-delay: 0.3s;
}

.info-section .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.info-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #357ABD, #2E6DA4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.info-card:hover::before {
    opacity: 1;
}

.info-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.info-card:hover .info-image img {
    transform: scale(1.02);
}

.info-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Prize List */
.prize-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.prize-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
}

.prize-label {
    font-size: 1rem;
    color: #555;
}

.prize-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.section-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

/* Steps List */
.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: #4A90E2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 1rem;
    color: white;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-title {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #1a1a1a;
    padding: 1.4rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 199, 85, 0.1), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(6, 199, 85, 0.3);
    border-color: #06C755;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.line-icon-small {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cta-button:hover .line-icon-small {
    transform: scale(1.15) rotate(5deg);
}

.line-icon-small svg {
    width: 48px;
    height: 48px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Paotang Info Section */
.paotang-info-section {
    background: rgb(2, 89, 195);
    padding: 2rem 1rem 6rem;
    margin-bottom: 0;
}

.paotang-info-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.paotang-info-section .paotang-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.paotang-info-section .paotang-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.35);
}

.paotang-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.paotang-info-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

/* Footer */
.footer {
    background: rgb(2, 89, 195);
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.footer-sticker {
    background: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.facebook-icon {
    background: #1877F2;
}

.phone-icon {
    background: #06C755;
}

.line-icon {
    background: #06C755;
}

.contact-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .line-button {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .line-button-text {
        text-align: center;
    }

    .info-section .section-title {
        font-size: 1.5rem;
    }

    .info-content {
        padding: 2rem;
    }

    .prize-table-card {
        padding: 2rem 1.5rem;
    }

    .prize-table-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .prize-header {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .prize-label,
    .prize-detail {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .prize-types-section,
    .prize-payment-section {
        padding: 1.5rem;
    }

    .prize-types-title,
    .prize-payment-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .prize-type-item {
        padding: 1.25rem;
    }

    .prize-type-badge {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }

    .prize-type-description {
        font-size: 0.95rem;
    }

    .prize-payment-table .prize-header {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .prize-header-note {
        font-size: 0.75rem;
    }

    .prize-payment-table .prize-label,
    .prize-payment-table .prize-detail {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .details-card {
        padding: 2rem 1.5rem;
    }

    .details-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .detail-item {
        padding: 1rem;
        gap: 1rem;
    }

    .detail-icon {
        width: 28px;
        height: 28px;
    }

    .detail-icon svg {
        width: 18px;
        height: 18px;
    }

    .detail-text {
        font-size: 0.95rem;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }

    .content-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .step-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-text {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .paotang-info-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .paotang-info-text {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .footer-sticker {
        padding: 0.875rem 1rem;
        gap: 1.5rem;
    }

    .contact-item {
        gap: 0.5rem;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    .main-title {
        font-size: 1.3rem;
    }

    .line-button {
        padding: 1.2rem;
    }

    .line-button-title {
        font-size: 1rem;
    }

    .info-content {
        padding: 1.5rem;
    }

    .prize-table-card {
        padding: 1.5rem 1rem;
    }

    .prize-table-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .prize-header {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .prize-label,
    .prize-detail {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .prize-types-section,
    .prize-payment-section {
        padding: 1.25rem;
    }

    .prize-types-title,
    .prize-payment-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .prize-type-item {
        padding: 1rem;
    }

    .prize-type-badge {
        font-size: 0.95rem;
        padding: 0.35rem 0.875rem;
    }

    .prize-type-description {
        font-size: 0.9rem;
    }

    .prize-payment-table .prize-header {
        padding: 0.625rem 0.375rem;
        font-size: 0.85rem;
    }

    .prize-header-note {
        font-size: 0.7rem;
    }

    .prize-payment-table .prize-label,
    .prize-payment-table .prize-detail {
        padding: 0.625rem 0.375rem;
        font-size: 0.85rem;
    }

    .details-card {
        padding: 1.5rem 1rem;
    }

    .details-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .detail-item {
        padding: 0.875rem;
        gap: 0.875rem;
    }

    .detail-icon {
        width: 24px;
        height: 24px;
    }

    .detail-icon svg {
        width: 16px;
        height: 16px;
    }

    .detail-text {
        font-size: 0.9rem;
    }

    .content-card {
        padding: 1.5rem 1rem;
    }

    .content-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .step-item {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-text {
        font-size: 0.9rem;
    }

    .paotang-info-text {
        font-size: 0.8rem;
    }

    .footer-sticker {
        padding: 0.75rem 0.875rem;
        gap: 1rem;
    }

    .contact-item {
        gap: 0.5rem;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-text {
        font-size: 0.85rem;
    }
}
