/* ==========================================================================
   GHorror Dark Zodiac Horoscope Plugin - Custom Theme Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Container Reset & Wrapper */
.ghorror-horoscope-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #060101;
    color: #ded1d1;
    overflow: hidden;
}

.ghorror-horoscope-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
   1. SECTION 1 (100% Full Width): Hero Banner Section
   ========================================================================== */
.ghorror-hero-banner-fullwidth {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 40px;
    background-image: url('../images/main-banner.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Ambient Background Particle Canvas */
.ghorror-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ghorror-banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, rgba(15, 2, 2, 0.45) 0%, rgba(6, 1, 1, 0.1) 85%);
    z-index: 2;
}

.ghorror-banner-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.ghorror-banner-sub-header {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 6px;
    color: #c9a374;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.ghorror-banner-content .ghorror-main-title {
    font-family: var(--ghorror-font-serif);
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #ffffff;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(255, 30, 30, 0.10), 0 0 40px rgba(180, 0, 0, 0.6);
    background: linear-gradient(180deg, #ffffff 30%, #ff8888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ghorror-sub-title {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #ff2a2a;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.75);
}

.ghorror-banner-quote {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 15px;
    color: #b8a6a6;
    line-height: 1.6;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
}

.ghorror-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 4, 4, 0.85);
    border: 1px solid #6b1010;
    border-radius: 20px;
    padding: 6px 22px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #e59999;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.ghorror-pill-dot {
    color: #ff1a1a;
    font-size: 14px;
}

/* ==========================================================================
   2. SECTION 2 (100% Full Width): Zodiac Carousel Navigation
   ========================================================================== */
.ghorror-carousel-section-fullwidth {
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    background: #090101;
    background-image: url('../images/icon-nav-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-top: 1px solid #360707;
    border-bottom: 1px solid #360707;
    padding: 0;
    position: relative;
    z-index: 4;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    overflow: visible !important;
}

.ghorror-carousel-inner {
    max-width: 1240px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 65px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

/* Dark gradient edge masks so icons fade out before reaching arrows */
.ghorror-carousel-inner::before,
.ghorror-carousel-inner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 10;
    pointer-events: none;
}

.ghorror-carousel-inner::before {
    left: 45px;
}

.ghorror-carousel-inner::after {
    right: 45px;
}

.ghorror-carousel-viewport {
    overflow: visible !important;
    clip-path: inset(-50px 0px -50px 0px);
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.ghorror-carousel-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    height: 100%;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.ghorror-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #140303;
    border: 1px solid #5a0c0c;
    color: #ff3333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}

.ghorror-arrow-left {
    left: 5px;
}

.ghorror-arrow-right {
    right: 5px;
}

.ghorror-carousel-arrow:hover {
    background: #2b0505;
    border-color: #ff1a1a;
    color: #ffffff;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.85);
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Sign Item */
.ghorror-carousel-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease, opacity 0.35s ease;
    padding: 0 10px;
    will-change: transform;
    height: 100%;
}

.ghorror-item-icon-ring {
    position: relative;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: transparent;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease;
}

.ghorror-item-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    filter: brightness(0.6) grayscale(0.3);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.ghorror-item-label {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8c7676;
    text-transform: uppercase;
    transition: color 0.35s ease, font-size 0.35s ease, text-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ghorror-item-symbol {
    font-size: 18px;
    display: none;
}

/* Hover Effect: Glow without heavy border */
.ghorror-carousel-item:hover .ghorror-item-icon-ring {
    transform: scale(1.12);
}

.ghorror-carousel-item:hover .ghorror-item-img {
    filter: sepia(1) saturate(8) hue-rotate(-50deg) brightness(1.15) drop-shadow(0 0 12px #ff0000);
}

.ghorror-carousel-item:hover .ghorror-item-label {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

/* Smooth Content Cross-Fade Transition */
.ghorror-prediction-text,
.ghorror-meters-list,
.ghorror-forecast-card {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ghorror-fade-out {
    opacity: 0.35;
    transform: scale(0.98);
}

/* Active Centered Selected Sign State (3D Embossed Pop-Out with Inset Vertical Breakout) */
.ghorror-carousel-item.active {
    z-index: 12;
    transform: scale(1.35) translateY(-2px);
}

.ghorror-carousel-item.active .ghorror-item-icon-ring {
    width: 155px;
    height: 155px;
    background: transparent;
    box-shadow: none;
}

.ghorror-carousel-item.active .ghorror-item-icon-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 30, 45, 0.35) 0%, rgba(150, 0, 0, 0.15) 55%, transparent 100%);
    animation: gothicBubbleRipple 2.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gothicBubbleRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.65);
        opacity: 0.85;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0.45;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.ghorror-carousel-item.active .ghorror-item-icon-ring {
    width: 175px;
    height: 175px;
    background: transparent;
    box-shadow: none;
}

.ghorror-carousel-item.active .ghorror-item-img {
    width: 90%;
    height: 90%;
    filter: sepia(1) saturate(3) hue-rotate(-50deg) brightness(1.25) drop-shadow(0 0 15px rgba(255, 30, 45, 0.6));
}

.ghorror-carousel-item.active .ghorror-item-label {
    color: #ff1a1a;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-top: 0;
}

.ghorror-carousel-item.active .ghorror-item-symbol {
    display: inline-block;
    color: #ff3333;
    font-size: 24px;
}

/* Diamond Underline on Active Sign */
.ghorror-active-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff1a1a, transparent);
    margin-top: 6px;
    position: relative;
}

.ghorror-active-underline::after {
    content: '◆';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: #ff1a1a;
}

/* ==========================================================================
   3. BOTTOM SECTIONS (Centered Container Max-Width 1200px)
   ========================================================================== */
.ghorror-bottom-content-container {
    max-width: 1200px;
    margin: 80px auto 50px;
    padding: 0 15px;
}

.ghorror-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 25px;
}

.ghorror-card-box {
    background: linear-gradient(180deg, #130303 0%, #080101 100%);
    border: 1px solid #4a0d0d;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(35, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.ghorror-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.ghorror-card-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    color: #e54d4d;
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.ghorror-card-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.ghorror-header-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff1a1a, transparent);
    margin: 10px auto 0;
    position: relative;
}

.ghorror-header-divider::before {
    content: '✦';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #ff1a1a;
    background: #110202;
    padding: 0 4px;
}

/* Today's Prediction Box: Background prediction-bg.jpg with padding */
.ghorror-prediction-box {
    background-image: url('../images/prediction-bg.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    min-height: 480px;
    padding-bottom: 220px;
}

.ghorror-prediction-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.ghorror-prediction-text {
    font-size: 14px;
    line-height: 1.85;
    color: #f3e9e9;
    text-align: center;
    padding: 0 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
    background: rgba(10, 2, 2, 0.45);
    border-radius: 8px;
    padding: 16px;
    backdrop-filter: blur(3px);
}

/* Today's Dark Energy Box: Background dark-energy-bg.jpg */
.ghorror-dark-energy-box {
    background-image: url('../images/dark-energy-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Energy Progress Meters Layout */
.ghorror-meters-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 5px;
    position: relative;
    z-index: 2;
}

.ghorror-meter-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ghorror-meter-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.ghorror-meter-label {
    width: 110px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #b09e9e;
    text-transform: uppercase;
    flex-shrink: 0;
}

.ghorror-meter-track {
    flex-grow: 1;
    height: 10px;
    background: #180404;
    border: 1px solid #3d0707;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.9);
}

.ghorror-meter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #880000 0%, #ff1a1a 100%);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.9);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ghorror-meter-val {
    width: 45px;
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    color: #e6dede;
    flex-shrink: 0;
}

/* Three Feature Cards Row */
.ghorror-three-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 25px;
}

/* Assigned Section Background Images */
.ghorror-realms-box,
.ghorror-luck-box {
    background-image: url('../images/your-luck-after-dark-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ghorror-ritual-box {
    background-image: url('../images/dark-ritual-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.ghorror-ritual-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    min-height: 290px;
    flex: 1;
    padding: 10px 10px 0;
}

.ghorror-ritual-text {
    font-size: 13px;
    line-height: 1.6;
    color: #c9bcbc;
    min-height: 180px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ghorror-btn {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.ghorror-btn-outline {
    background: rgba(20, 3, 3, 0.85);
    border: 1px solid #731212;
    color: #ff4d4d;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.ghorror-btn-outline:hover {
    background: #330505;
    border-color: #ff1a1a;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.ghorror-btn-outline.revealed {
    background: rgba(45, 5, 5, 0.9);
    border-color: #ff2a2a;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 30, 30, 0.8);
}

.ghorror-card-action {
    margin-top: 20px;
    text-align: center;
}

.ghorror-realms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ghorror-realm-mini-btn {
    background: rgba(17, 2, 2, 0.85);
    border: 1px solid #330707;
    border-radius: 6px;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ghorror-realm-mini-btn:hover {
    border-color: #881111;
    background: rgba(29, 4, 4, 0.95);
    box-shadow: 0 0 10px rgba(180, 0, 0, 0.4);
}

.ghorror-realm-mini-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.ghorror-realm-mini-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #a89595;
    text-transform: uppercase;
}

.ghorror-ritual-teaser {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    color: #a38e8e;
    font-style: italic;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.ghorror-ritual-revealed-text {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-shadow: 0 0 16px rgba(255, 30, 30, 0.95), 0 0 30px rgba(180, 0, 0, 0.6);
    font-style: italic;
    background: rgba(12, 2, 2, 0.78);
    border: 1px solid rgba(255, 30, 30, 0.4);
    border-radius: 8px;
    padding: 12px 18px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.95), inset 0 0 15px rgba(180, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

@keyframes cinematicRitualReveal {
    0% {
        opacity: 0;
        transform: scale(0.85);
        filter: blur(8px) brightness(2);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.04);
        filter: blur(2px) brightness(1.4);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0) brightness(1);
    }
}

.ghorror-ritual-animate {
    animation: cinematicRitualReveal 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.ghorror-luck-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.ghorror-luck-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ghorror-luck-number {
    font-family: 'Cinzel', serif;
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 30, 30, 0.9);
    line-height: 1;
}

.ghorror-luck-colors {
    font-family: 'Cinzel', serif;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff3333;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

.ghorror-luck-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8c7878;
    margin-top: 4px;
}

.ghorror-luck-divider {
    width: 80%;
    height: 1px;
    background: #2b0606;
}

.ghorror-dark-hour-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dcd0d0;
    font-size: 13px;
    font-weight: 600;
}

.ghorror-clock-icon {
    color: #ff1a1a;
}

/* Share Your Fate Section (Background: share-bg.jpg) */
.ghorror-share-section {
    width: 100%;
    overflow: visible !important;
    padding: 30px 0;
}

.ghorror-share-container {
    background: linear-gradient(135deg, rgba(24, 3, 3, 0.9) 0%, rgba(10, 1, 1, 0.9) 100%);
    border: 1px solid #4d0b0b;
    border-radius: 10px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
    background-image: url('../images/share-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: visible !important;
}

.ghorror-share-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 1, 1, 0.35);
    z-index: 1;
}

.ghorror-share-info,
.ghorror-share-card-wrapper {
    position: relative;
    z-index: 2;
}

.ghorror-share-title {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0 0 6px 0;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
}

.ghorror-share-subtitle {
    font-size: 14px;
    color: #bfaeae;
    margin: 0 0 24px 0;
}

/* All four share buttons aligned in a single line */
.ghorror-share-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
}

.ghorror-share-btn {
    flex: 1 1 auto;
    background: rgba(15, 2, 2, 0.9);
    border: 1px solid #5a0c0c;
    border-radius: 6px;
    padding: 10px 12px;
    color: #dcd0d0;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ghorror-share-btn:hover {
    background: #330505;
    border-color: #ff1a1a;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
}

.ghorror-share-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible !important;
}

.ghorror-forecast-card {
    width: 250px;
    height: 380px;
    background: #080101;
    border: none;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 30, 45, 0.4);
    transform: rotate(5deg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin: -45px 0 -45px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.ghorror-card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast;
}

.ghorror-card-content-inner {
    position: relative;
    z-index: 2;
    padding: 24px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}

.ghorror-forecast-card:hover {
    transform: rotate(0deg) scale(1.06) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.98), 0 0 35px rgba(255, 30, 45, 0.7);
}

.ghorror-card-zodiac-symbol {
    font-size: 28px;
    color: #ff3333;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0 auto 6px;
    overflow: hidden;
}

.ghorror-card-zodiac-symbol .ghorror-card-zodiac-img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    filter: sepia(1) saturate(3) hue-rotate(-50deg) brightness(1.15) drop-shadow(0 0 6px #ff0000);
}

.ghorror-card-sign-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    margin-top: 4px;
}

.ghorror-card-sublabel {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #9e8888;
    margin-bottom: 12px;
}

.ghorror-card-energy-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: #ff4d4d;
}

.ghorror-card-energy-val {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.9);
}

.ghorror-card-snippet {
    font-size: 10px;
    line-height: 1.4;
    color: #b5a4a4;
    margin: 10px 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ghorror-card-watermark {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: #695757;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .ghorror-share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .ghorror-main-grid {
        grid-template-columns: 1fr;
    }

    .ghorror-three-cards-grid {
        grid-template-columns: 1fr;
    }

    .ghorror-share-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ghorror-share-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ghorror-main-title {
        font-size: 38px;
    }

    .ghorror-sub-title {
        font-size: 13px;
    }

    .ghorror-carousel-inner {
        padding: 0 40px;
    }

    .ghorror-carousel-item.active .ghorror-item-icon-ring {
        width: 120px;
        height: 120px;
    }

    .ghorror-carousel-item.active .ghorror-item-label {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .ghorror-carousel-item.active .ghorror-item-icon-ring {
        width: 100px;
        height: 100px;
    }

    .ghorror-carousel-item.active .ghorror-item-label {
        font-size: 15px;
    }

    .ghorror-share-buttons {
        flex-direction: column;
    }
}
