.header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.notice-container {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.notice-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.notice-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.5rem;
}

.notice-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
    border-radius: 8px 8px 0 0;
}

.notice-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.notice-table tr:last-child td {
    border-bottom: none;
}

.notice-table tr:hover td {
    background-color: rgba(108, 92, 231, 0.05);
}

.notice-table .section-title {
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.notice-table .highlight {
    color: var(--accent-color);
    font-weight: 500;
}

.notice-table ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

.notice-table li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: rgba(108, 92, 231, 0.1);
    padding: 1.2rem;
    border-radius: 0.8rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-left: 4px solid var(--primary-color);
}

.contact-info::before {
    content: '📧';
    font-size: 1.2rem;
}

.action-area {
    text-align: center;
    margin-top: 2rem;
}

.agree-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    position: relative;
    overflow: hidden;
}

.agree-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.agree-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.agree-btn:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.luck-message {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

.luck-message::before,
.luck-message::after {
    content: '✦';
    margin: 0 0.5rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .notice-container {
        padding: 1.5rem 1rem 1.5rem 1.5rem;
    }

    .notice-table th,
    .notice-table td {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .notice-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .notice-table .section-title {
        white-space: normal;
    }
}