/* GroupMClick 风格营销首页 */
html.home-theme .wrapper.gm-index-page,
.gm-index-page.wrapper {
    padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px)) !important;
    overflow: visible;
}

.gm-index-page {
    background: #141414;
    color: #f0f0f0;
}

.gm-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 56px - 72px);
    min-height: 400px;
    max-height: 620px;
    overflow: hidden;
    background: #000;
}

.gm-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gm-hero__mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.82) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
    padding: 40px 24px 48px;
}

.gm-hero__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 340px;
}

.gm-hero__title-main {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.gm-hero__title-sub {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    background: linear-gradient(135deg, #f7e7a3 0%, #e8c96a 45%, #c9a227 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gm-hero__desc {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    max-width: 340px;
}

.gm-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 180px;
    margin-top: 8px;
    padding: 14px 36px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff961b 0%, #f57c00 100%);
    box-shadow: 0 8px 24px rgba(255, 150, 27, 0.35);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
}

.gm-index-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 14px 0;
    padding: 10px 12px;
    min-height: 40px;
    border-radius: 12px;
    background: rgba(42, 42, 42, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.gm-index-notice__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.9;
}

.gm-index-notice__track {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.gm-index-notice__inner {
    display: inline-flex;
    white-space: nowrap;
    animation: gm-notice-scroll 22s linear infinite;
}

.gm-index-notice__item {
    display: inline-block;
    padding-right: 60px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(232, 201, 106, 0.9);
}

@keyframes gm-notice-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gm-index-body {
    padding: 0 0 16px;
}

.gm-index-page .gm-home-section {
    padding-bottom: 12px;
}

.gm-index-page .gm-home-footer {
    padding-bottom: 16px;
}
