.reserve-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reserve-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-gold-light);
    padding: 2rem;
    margin-top: 2rem;
    text-align: left;
    box-sizing: border-box;
}

.reserve-card-title {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: bold;
}

.reserve-card-desc {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 1.6rem;
    line-height: 1.6;
}

.btn-insta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 1.4rem 0;
    background: linear-gradient(135deg, var(--color-gold), #aa820a);
    color: #131314;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.btn-tel {
    display: block;
    text-align: center;
    width: 100%;
    padding: 1.4rem 0;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.3s ease;
}

.btn-insta:hover,
.btn-tel:hover {
    opacity: 0.85;
}

.btn-tel:hover {
    background: var(--color-gold);
    color: #000;
}

.template-box {
    background: var(--color-bg-body);
    border: 1px dashed var(--color-gold-light);
    padding: 1.4rem;
    margin-top: 1.6rem;
    text-align: left;
}

.template-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.template-title {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: bold;
}

.copy-btn {
    background: var(--color-gold);
    color: #131314;
    border: none;
    padding: 0.4rem 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0.8rem;
    transition: opacity 0.2s;
}

.copy-btn:hover {
    opacity: 0.8;
}

.copy-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.template-content {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-all;
    margin: 0;
    user-select: all;
}

.notice-card {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-gold);
    padding: 1.6rem 2rem;
    margin-top: 2rem;
}

.notice-title {
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-weight: bold;
}

.notice-list {
    margin: 0;
    padding-left: 1.6rem;
    font-size: 1.3rem;
    color: #bbb;
    line-height: 1.7;
}

.notice-list li {
    margin-bottom: 0.8rem;
}

.notice-list li:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--color-gold);
    font-weight: bold;
}