/* ==================== CREATORS PAGE ==================== */
/* Hero uses the shared .page-hero / .page-hero-split components. */

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border: 4px solid var(--block-green);
    box-shadow: 0 0 30px rgba(127, 194, 66, 0.3), 0 8px 0 rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(127, 194, 66, 0.5), 0 8px 0 rgba(0,0,0,0.3);
}

/* Sections */
.benefits-section,
.eligibility-section,
.guidelines-section,
.application-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-left: 5px solid var(--block-green);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(127, 194, 66, 0.2), 0 4px 0 rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4), 0 6px 0 rgba(0,0,0,0.3);
    border-left-color: var(--laser-orange);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--block-green);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.benefit-card:hover h3 {
    color: var(--laser-orange);
}

.benefit-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Platform Requirements */
.platform-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--block-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(127, 194, 66, 0.15);
    transition: all 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(127, 194, 66, 0.3);
}

.platform-header {
    background: var(--block-green);
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.platform-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1)) drop-shadow(0 0 8px rgba(255, 255, 255, 1));
}

.platform-header h3 {
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

/* Platform brand colors */
.platform-card.youtube {
    border-color: #FF0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
}

.platform-card.youtube:hover {
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.3);
}

.platform-card.youtube .platform-header {
    background: #FF0000;
}

.platform-card.youtube .requirement-value {
    color: #FF0000;
}

.platform-card.twitch {
    border-color: #9146FF;
    box-shadow: 0 0 25px rgba(145, 70, 255, 0.15);
}

.platform-card.twitch:hover {
    box-shadow: 0 0 35px rgba(145, 70, 255, 0.3);
}

.platform-card.twitch .platform-header {
    background: #9146FF;
}

.platform-card.twitch .requirement-value {
    color: #9146FF;
}

.platform-card.tiktok {
    border-color: #000000;
    box-shadow: 0 0 15px rgba(255, 0, 80, 0.3), 0 0 15px rgba(0, 242, 234, 0.3);
}

.platform-card.tiktok:hover {
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.5), 0 0 25px rgba(0, 242, 234, 0.5);
}

.platform-card.tiktok .platform-header {
    background: #000000;
    box-shadow: inset 0 0 20px rgba(255, 0, 80, 0.2), inset 0 0 20px rgba(0, 242, 234, 0.2);
}

.platform-card.tiktok .platform-header h3 {
    color: #FFFFFF;
}

.platform-card.tiktok .requirement-value {
    color: #00F2EA;
}

.requirements-list {
    padding: 25px;
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(127, 194, 66, 0.2);
}

.requirement-item:last-child {
    border-bottom: none;
}

.requirement-label {
    color: #999;
    font-size: 0.95rem;
}

.requirement-value {
    color: var(--block-green);
    font-weight: 600;
    font-size: 1rem;
}

/* Guidelines */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guideline-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid rgba(127, 194, 66, 0.3);
    transition: all 0.3s;
}

.guideline-item:hover {
    border-color: var(--laser-orange);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.guideline-item h4 {
    color: var(--block-green);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.guideline-item:hover h4 {
    color: var(--laser-orange);
}

.guideline-item p {
    color: #ccc;
    line-height: 1.5;
}

/* Application */
.application-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.application-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--block-green);
    box-shadow: 0 0 30px rgba(127, 194, 66, 0.2);
}

.application-text {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--block-green);
    font-weight: 700;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(127, 194, 66, 0.1);
    transition: all 0.3s;
}

.email-link:hover {
    color: var(--laser-orange);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.application-note {
    color: #999;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.application-note strong {
    color: var(--block-green);
}

/* Responsive */
@media (max-width: 968px) {
    .platform-requirements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }

    .application-details {
        padding: 25px;
    }

    .email-link {
        font-size: 1.2rem;
    }
}
