.elementor-492 .elementor-element.elementor-element-0562bd4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-492 .elementor-element.elementor-element-9fd858f{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-9fd858f */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0d1117;
    overflow-x: hidden;
}

/* Highlight */
.highlight {
    color: #EFB810;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #EFB810;
    color: #0d1117;
}

.btn-primary:hover {
    background: #d4a00e;
}

/* Pillar CTA */
.pillar-cta {
    color: #EFB810;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.pillar-cta:hover {
    color: #fff;
}

/* Intro Line */
.intro-line {
    width: 3px;
    min-height: 150px;
    background: linear-gradient(180deg, #EFB810 0%, rgba(239, 184, 16, 0.3) 50%, rgba(239, 184, 16, 0.1) 100%);
    flex-shrink: 0;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(239, 184, 16, 0.3);
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(239, 184, 16, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(239, 184, 16, 0.5);
    }
}

.intro-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, #EFB810, transparent);
    border-radius: 2px;
    animation: lineFlow 2s ease-in-out infinite;
}

@keyframes lineFlow {
    0% { top: 0; opacity: 1; }
    100% { top: calc(100% - 30px); opacity: 0; }
}


/* Page Hero */
.page-hero {
    padding: 12rem 5% 5rem;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.3), transparent);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero h1 .highlight {
    display: inline-block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 30%, #EFB810 60%, #f5d060 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerTitle 4s linear infinite;
    position: relative;
}

@keyframes shimmerTitle {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.page-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.page-hero p {
    font-size: 1.2rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    line-height: 1.7;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero p::before {
    content: '—';
    display: block;
    color: #EFB810;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.8s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.6; }
}

/* Page Content */
.page-content {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Content Intro */
.content-intro {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    width: 100%;
}

.content-intro-left {
    flex: 0 0 400px;
}

.content-intro-left h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.content-intro-left h2 .highlight {
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.content-intro-right {
    flex: 1;
    display: flex;
    gap: 2rem;
}

.content-intro-right p {
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
}


/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.media-card {
    background: linear-gradient(135deg, #161b22 0%, #1a1f26 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    max-width: 100%;
}

.media-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 40%, rgba(239, 184, 16, 0.5) 50%, transparent 60%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.media-card:hover::after {
    opacity: 1;
    animation: mediaBorderGlow 3s linear infinite;
}

@keyframes mediaBorderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.media-card:hover {
    border-color: rgba(239, 184, 16, 0.3);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(239, 184, 16, 0.15);
}

.media-card.featured {
    grid-column: span 2;
}

/* Image container */
.media-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.media-card.featured img {
    height: 200px;
}

.media-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.media-card-content {
    padding: 1.25rem;
    position: relative;
    z-index: 3;
}

.media-type {
    display: inline-block;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.2) 0%, rgba(239, 184, 16, 0.1) 100%);
    color: #EFB810;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(239, 184, 16, 0.3);
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.media-card:hover .media-type {
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.3) 0%, rgba(239, 184, 16, 0.15) 100%);
    box-shadow: 0 0 15px rgba(239, 184, 16, 0.3);
}

.media-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: #fff;
    line-height: 1.4;
    transition: all 0.4s ease;
    position: relative;
}

.media-card:hover .media-card-content h3 {
    color: #EFB810;
}

.media-card-content p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    transition: all 0.4s ease;
}

.media-card:hover .media-card-content p {
    color: #aaa;
}

.media-card-content .pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 3px;
}

.media-card-content .pillar-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #EFB810;
    transition: width 0.4s ease;
}

.media-card:hover .media-card-content .pillar-cta::after {
    width: 100%;
}


/* Media Appearances */
.media-appearances {
    margin-top: 4rem;
    position: relative;
}

.media-appearances h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.media-appearances h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #EFB810, rgba(239, 184, 16, 0.3));
    border-radius: 2px;
}

.appearances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.appearance-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.appearance-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 17, 23, 0.9) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.appearance-item::after {
    content: 'View →';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    color: #EFB810;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.appearance-item:hover::before {
    opacity: 1;
}

.appearance-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.appearance-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(239, 184, 16, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(239, 184, 16, 0.15);
}

.appearance-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.6s ease;
}

.appearance-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #0a0d12 0%, #0d1117 50%, #0a0d12 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.3), transparent);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta-content h2 .highlight {
    display: inline-block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 30%, #EFB810 60%, #f5d060 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerCTA 4s linear infinite;
    position: relative;
}

@keyframes shimmerCTA {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.final-cta-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: underlinePulseCTA 2s ease-in-out infinite;
}

@keyframes underlinePulseCTA {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.7);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.final-cta-content p {
    color: #888;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    position: relative;
}

.final-cta-content p::before,
.final-cta-content p::after {
    content: '✦';
    color: rgba(239, 184, 16, 0.3);
    font-size: 0.8rem;
    margin: 0 0.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.final-cta-content p::after {
    animation-delay: 1s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Awesome Button Styles */
.final-cta-buttons .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 1.1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.final-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    color: #0d1117;
    border: none;
    box-shadow: 
        0 5px 20px rgba(239, 184, 16, 0.4),
        0 0 40px rgba(239, 184, 16, 0.2);
    animation: buttonGlow 3s ease-in-out infinite;
}

.final-cta-buttons .btn-primary i {
    margin-right: 0.5rem;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 
            0 5px 20px rgba(239, 184, 16, 0.4),
            0 0 40px rgba(239, 184, 16, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 30px rgba(239, 184, 16, 0.6),
            0 0 60px rgba(239, 184, 16, 0.3);
    }
}

.final-cta-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.final-cta-buttons .btn-primary:hover {
    background-position: right center;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(239, 184, 16, 0.5),
        0 0 80px rgba(239, 184, 16, 0.3);
}

.final-cta-buttons .btn-primary:hover::before {
    left: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-intro {
        flex-direction: column;
        gap: 2rem;
    }
    
    .content-intro-left {
        flex: none;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .media-card.featured {
        grid-column: span 1;
    }
    
    .appearances-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 5% 3rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}/* End custom CSS */