/* ==============================================
   SCOLAR NAIJA - WAEC/NECO YOUTH VIBE STYLING
   ============================================== */

/* High-Energy Hero Section */
.neco-hero {
    background: linear-gradient(135deg, #0f172a 0%, #2e1065 50%, #4c1d95 100%);
    border-radius: var(--radius-standard, 16px);
    padding: 80px 40px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px -10px rgba(76, 29, 149, 0.4);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern for texture */
.neco-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hype-badge {
    background: #10b981;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.neco-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.neco-hero p {
    font-size: 19px;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.author-tag {
    font-size: 14px;
    color: #a5b4fc;
    font-weight: 500;
}
.author-tag strong {
    color: #ffffff;
}

/* Main Content Area */
.neco-content {
    background: var(--surface-pure, #ffffff);
    padding: 48px;
    border-radius: var(--radius-standard, 16px);
    box-shadow: var(--shadow-premium, 0 20px 25px -5px rgba(0,0,0,0.03));
    max-width: 900px;
    margin: 0 auto;
}

.neco-content h2 {
    font-size: 32px;
    color: #0f172a;
    margin: 48px 0 20px 0;
    font-weight: 900;
    letter-spacing: -1px;
}

.neco-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

/* Timeline/Exam Board Cards */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.timeline-card {
    border-radius: 16px;
    padding: 2px; /* For gradient border effect */
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.waec-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.neco-card {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.card-header {
    font-size: 24px;
    font-weight: 800;
    color: white;
    padding: 20px 24px;
    text-align: center;
}

.check-list {
    background: #ffffff;
    border-radius: 0 0 14px 14px;
    padding: 24px;
    margin: 0;
    list-style: none;
}

.check-list li {
    font-size: 16px;
    color: #334155;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.check-list li::before {
    content: '✓';
    background: #e2e8f0;
    color: #0f172a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 12px;
}

/* Strategy Hack Boxes */
.hack-box {
    display: flex;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: transform 0.2s, border-color 0.2s;
}

.hack-box:hover {
    transform: translateY(-3px);
    border-color: #6366f1;
}

.hack-icon {
    font-size: 40px;
    margin-right: 24px;
    line-height: 1;
}

.hack-text h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.hack-text p {
    font-size: 16px;
    margin: 0;
}

/* ==============================================
   FUTURE AFFILIATE "APP STORE" SECTION
   ============================================== */
.tools-section {
    margin-top: 60px;
    background: #0f172a;
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.tools-header h2 {
    color: white;
    margin-top: 0;
}

.tools-header p {
    color: #94a3b8;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.app-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.app-card:hover {
    background: #2dd4bf;
    border-color: #2dd4bf;
    transform: translateY(-5px);
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.app-info h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.app-card:hover .app-info h4,
.app-card:hover .app-info p {
    color: #0f172a;
}

.app-info p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.app-download-btn {
    display: inline-block;
    background: white;
    color: #0f172a;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    transition: background 0.2s;
}

.app-download-btn:hover {
    background: #f1f5f9;
}