/* CORE STRUCTURAL RULES - FRONTEND SAFE */
.ph-container-d54ed10c {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
    --ph-gold-d54ed10c: #D4AF37;
    z-index: 1;
    display: block;
}

.ph-slides-wrapper-d54ed10c {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.ph-slide-d54ed10c {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-slide-d54ed10c.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* MEDIA RULES */
.ph-bg-media-d54ed10c {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* OVERLAYS & CANVAS */
.ph-overlay-d54ed10c {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(20,20,20,0.9));
    z-index: 1;
}

.ph-particles-d54ed10c {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* CONTENT LAYOUT */
.ph-content-wrapper-d54ed10c {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.ph-content-box-d54ed10c {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px) brightness(100%);
    -webkit-backdrop-filter: blur(10px) brightness(100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 60px 40px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.ph-content-box-d54ed10c.ph-glass-disabled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.ph-content-box-d54ed10c.align-center { text-align: center; margin-left: auto; margin-right: auto; }
.ph-content-box-d54ed10c.align-left { text-align: left; margin-left: 0; margin-right: auto; }
.ph-content-box-d54ed10c.align-right { text-align: right; margin-left: auto; margin-right: 0; }

/* TYPOGRAPHY */
.ph-badge-d54ed10c {
    display: inline-block;
    color: var(--ph-gold-d54ed10c);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--ph-gold-d54ed10c);
    padding-bottom: 4px;
}

.ph-title-d54ed10c {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.ph-subtitle-d54ed10c {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    margin: 0 0 40px 0;
    font-weight: 300;
}

/* BUTTONS */
.ph-actions-d54ed10c {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ph-content-box-d54ed10c.align-center .ph-actions-d54ed10c { justify-content: center; }
.ph-content-box-d54ed10c.align-right .ph-actions-d54ed10c { justify-content: flex-end; }

.ph-btn-d54ed10c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.ph-btn-1-d54ed10c {
    background-color: var(--ph-gold-d54ed10c);
    color: #111;
    border: 1px solid var(--ph-gold-d54ed10c);
}

.ph-btn-1-d54ed10c:hover {
    background-color: transparent;
    color: var(--ph-gold-d54ed10c);
}

.ph-btn-2-d54ed10c {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.ph-btn-2-d54ed10c:hover {
    border-color: var(--ph-gold-d54ed10c);
    color: var(--ph-gold-d54ed10c);
}

/* NAVIGATION (Arrows) */
.ph-nav-d54ed10c {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.ph-nav-d54ed10c:hover {
    background: var(--ph-gold-d54ed10c);
    border-color: var(--ph-gold-d54ed10c);
    color: #111;
}

.ph-prev-d54ed10c { left: 20px; }
.ph-next-d54ed10c { right: 20px; }

/* PAGINATION (Dots) */
.ph-pagination-d54ed10c {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.ph-dot-d54ed10c {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ph-dot-d54ed10c.is-active {
    background: var(--ph-gold-d54ed10c);
    opacity: 1;
    transform: scale(1.2);
}

/* ANIMATIONS */
.ph-anim-enabled .ph-anim-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ph-slide-d54ed10c.is-active.is-visible .ph-anim-item {
    opacity: 1;
    transform: translateY(0);
}

.ph-slide-d54ed10c.is-active.is-visible .ph-badge-d54ed10c { transition-delay: 0.1s; }
.ph-slide-d54ed10c.is-active.is-visible .ph-title-d54ed10c { transition-delay: 0.3s; }
.ph-slide-d54ed10c.is-active.is-visible .ph-subtitle-d54ed10c { transition-delay: 0.5s; }
.ph-slide-d54ed10c.is-active.is-visible .ph-actions-d54ed10c { transition-delay: 0.7s; }
