/* ---- 全域設定 ---- */
:root {
    --bg-dark: #010a14;
    --neon-purple: #bf5af2;
    --neon-cyan: #00ffff;
    --neon-green: #32d74b;
    --talisman-yellow: #f8e71c;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: "Microsoft JhengHei", sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Hero Banner ---- */
.hero-section {
   padding-top: 40px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
            position: relative; 
            overflow: hidden;
}

.hero-title {
            font-size: 56px;
            font-weight: 900;
            text-shadow: 0 0 10px var(--neon-cyan);
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(0,255,255,0.8), 0 0 40px rgba(0,255,255,0.4);"
        }
        .banner-h3{
            color: #ffffff;
    letter-spacing: 1px;
    font-size: 26px;
    font-weight: 600;
        }
        .line{
            height: 2px; background: 
            linear-gradient(90deg, transparent, var(--neon-cyan), transparent); 
            width: 60%;
            margin: 0 auto;"
        }
        .banner-line{
            border-left: 2px solid var(--neon-cyan); padding-left: 15px;
        }

.bg-decoration {
    position: absolute;
    background: url(/frontdesk/image/bg.jpg);
    z-index: 1;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

/* ---- 按鈕 ---- */
.btn-cyber {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    font-weight: bold;
    padding: 10px 40px;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 2px;
}

.btn-cyber:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--neon-cyan);
    text-decoration: none;
}

/* ---- 符咒卡片 ---- */
.talisman-card {
            background-color: #efe340;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 4px solid transparent;
    margin-bottom: 15px;
    width: 150px;
        }

        .talisman-card:hover {
            transform: translateY(-10px) scale(1.05);
        }

        /* 符咒內容模擬 */
        .talisman-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .talisman-script {
           font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
        }


/* 霓虹邊框 */
.border-purple {
    box-shadow: 0 0 20px var(--neon-purple);
    border-color: var(--neon-purple);
}

.border-cyan {
    box-shadow: 0 0 20px var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.border-green {
    box-shadow: 0 0 20px var(--neon-green);
    border-color: var(--neon-green);
}

/* ---- 表單區域 ---- */
.form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--neon-cyan);
    margin: 50px 0;
}

.form-section label {
    color: #ccc;
    margin-bottom: 5px;
}

.form-section .form-control {
    border-radius: 4px;
}

.con-ti {
    color: #fcff00;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(244, 221, 5, 0.79), 0 0 40px rgba(239, 217, 0, 0.25);
}

.recaptcha {
    display: flex;
    justify-content: center;
}
img.itoffer{
	width: 100%;
}
/* ---- Footer ---- */
footer {
    background-color: transparent;
    padding: 30px 0;
}

/* ---- RWD ---- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }

    .form-section {
        padding: 15px;
        margin: 25px 0;
    }
    .hero-title {
    font-size: 32px;
    letter-spacing: 0px;
    margin-top: 15px;
}
.banner-line {
    border-left: none;
    padding-left: 15px;
}
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .talisman-card {
               width: 115px;
        padding: 0px 10px;
    
    }

    .talisman-script {
        font-size: 1.5rem;
    }
    img.itoffer{
    width: 180px;
    }
}
.footer-social {
    display: flex;
    gap: 22px;
}

.footer-social a {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--main-color);
    transform: translateY(-3px);
}

.footer-social a img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}
