
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    background-color: #fafafa;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e91e63; 
}

.logo span {
    color: #333;
    font-weight: 300;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e91e63;
}

.btn-login {
    border: 2px solid #e91e63;
    padding: 5px 15px;
    border-radius: 20px;
    color: #e91e63 !important;
}

.btn-login:hover {
    background: #e91e63;
    color: #fff !important;
}


.hero {
    background: linear-gradient(135deg, #fce4ec 0%, #fff 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #f8bbd0;
}

.hero h1 {
    font-size: 3rem;
    color: #c2185b;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-main {
    background: #e91e63;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transition: transform 0.2s;
}

.btn-main:hover {
    transform: translateY(-2px);
    background: #d81b60;
}


.ad-container {
    margin: 40px auto;
    text-align: center;
}

.ad-label {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 5px;
}

.ad-placeholder {
    width: 100%;
    height: 150px; 
    background: #eee;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border-radius: 8px;
}


.ticket-section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ticket-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.15);
}

.card-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.card-content {
    padding: 20px;
    position: relative;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e91e63;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge.sold-out {
    background: #ff9800;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card-content p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.card-content i {
    width: 20px;
    text-align: center;
    color: #e91e63;
}

.card-content .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c2185b;
    margin: 15px 0;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: #fff;
    border: 2px solid #e91e63;
    color: #e91e63;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-buy:hover {
    background: #e91e63;
    color: #fff;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f48fb1;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none; 
    }
    
    .navbar .container {
        justify-content: center;
    }
}


.nav-tg {
    color: #0088cc !important; 
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-tg:hover {
    color: #006699 !important;
}


.social-links a .fa-telegram {
    color: #fff; 
}
.social-links a:hover .fa-telegram {
    color: #0088cc; 
}


.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #0088cc; 
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    z-index: 2000; 
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1); 
    background-color: #0077b5;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}


.float-tooltip {
    position: absolute;
    right: 70px;
    background-color: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.3s;
    pointer-events: none;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.float-btn:hover .float-tooltip {
    opacity: 1; 
    visibility: visible;
}


@media (max-width: 768px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    

    .float-tooltip {
        display: none;
    }
}

body {
    top: 0 !important;
}
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}


#google_translate_element {
    display: inline-block;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: 1px solid #e91e63 !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    line-height: 20px !important;
    display: inline-block;
    cursor: pointer;
}


.goog-te-gadget-simple span {
    color: #333 !important;
}

.goog-te-gadget-simple img {
    display: none !important; 
}


.goog-te-menu-value {
    margin: 0 !important;
}
.content-section {
    padding: 40px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #444;
}

.article-body h3 {
    color: #c2185b; /* 深粉紅 */
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-left: 4px solid #e91e63;
    padding-left: 10px;
}

.article-body p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify; /* 左右對齊 */
}

/* FAQ 區塊 */
.faq-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 5px solid #f48fb1; /* 淺粉紅邊條 */
}

.faq-item h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
}

/* 手機版適配 */
@media (max-width: 768px) {
    .article-body {
        padding: 0 10px;
    }
    .faq-grid {
        grid-template-columns: 1fr; /* 手機版變單欄 */
    }
}