/* Campaign Management Page Styles */

/* --- Hero --- */
.page-hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(11, 15, 20, 0) 20%, var(--bg-dark) 100%),
        radial-gradient(ellipse at top, rgba(20, 26, 34, 0.8), transparent 70%);
    z-index: -2;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* --- Feature Cards --- */
.feature-card {
    background: linear-gradient(135deg, rgba(26, 34, 46, 0.95) 0%, rgba(15, 20, 28, 0.95) 100%);
    border: 1px solid rgba(242, 183, 44, 0.15);
    padding: 50px 35px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 183, 44, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 70px rgba(242, 183, 44, 0.25), 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(26, 34, 46, 1) 0%, rgba(20, 26, 34, 1) 100%);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(242, 183, 44, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-gold);
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.feature-card i {
    transition: all 0.5s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px var(--primary-gold));
}

/* --- Check Lists --- */
.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background: rgba(242, 183, 44, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 0.6rem;
}

/* --- Platform Grid --- */
.platform-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.platform-badge {
    background: rgba(20, 26, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 22px;
    border-radius: 50px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.platform-badge:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(242, 183, 44, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 183, 44, 0.15);
}