/* Premium Campaign Templates - Frontend Styles */
:root {
    --campaign-accent: #ff8a00;
}

.campaign-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

.campaign-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 138, 0, 0.2);
    border-left: 4px solid var(--campaign-accent);
    color: var(--campaign-accent);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.campaign-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.campaign-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.campaign-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--campaign-accent);
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.campaign-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Layout 1: Hero Elite */
.layout-hero {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.layout-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.layout-hero .stats-cluster {
    position: absolute;
    bottom: 60px;
    right: 10%;
    display: flex;
    gap: 50px;
    z-index: 2;
}

/* Layout 2: Split Focus */
.layout-split {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    background: #000;
}

    .layout-split .content-side { width: 45%; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 60px; background: #111; border-right: 4px solid var(--campaign-accent); }
    .layout-split .image-side { flex: 1; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; background-color: #222; }

/* Layout 3: Glass Center */
.layout-glass {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.layout-glass .glass-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 60px 80px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 850px;
    margin: 0 20px;
}

/* Layout 4: Dynamic Edge */
.layout-edge {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 10%;
    background-size: cover;
    background-position: center;
}

.layout-edge .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.layout-edge .side-panel {
    position: absolute;
    top: 40px;
    right: 40px;
    bottom: 40px;
    width: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

/* Stats Styling */
.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--campaign-accent);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .campaign-title { font-size: 38px; }
    .layout-split .content-side { width: 100%; border-right: none; border-bottom: 5px solid var(--campaign-accent); }
    .layout-split { flex-direction: column; }
    .layout-edge .side-panel { display: none; }
    .layout-hero .stats-cluster { position: static; margin-top: 20px; }
}

@media (max-width: 575px) {
    .campaign-title { font-size: 28px; }
    .campaign-desc { font-size: 14px; }
    .layout-hero, .layout-split .content-side { padding: 40px 20px; }
    .layout-glass .glass-card { padding: 40px 20px; }
}
