/* Skills & Tools Power Box Styles */
.power-box-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.power-box-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(41, 128, 185, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.power-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Power Cards */
.power-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.power-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.power-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.15),
        0 0 0 1px rgba(255, 107, 53, 0.1);
}

.skills-card {
    border-top: 3px solid #ff6b35;
}

.tools-card {
    border-top: 3px solid #2980b9;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.avatar-badge {
    position: relative;
    display: flex;
    align-items: center;
}

.mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ff6b35;
    padding: 2px;
    background: rgba(255, 107, 53, 0.1);
}

.pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.power-btn {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ffa726;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.power-btn:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(255, 107, 53, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.power-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Card Content */
.card-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.inspiration-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.left-line {
    justify-content: flex-end;
}

.right-line {
    justify-content: flex-start;
}

.line-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    text-align: center;
    min-width: 120px;
}

.line-dot {
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
    position: relative;
}

.line-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, #ff6b35, transparent);
}

.left-line .line-dot::before {
    left: 100%;
}

.right-line .line-dot::before {
    right: 100%;
}

/* Main Image */
.main-image-container {
    position: relative;
    width: 300px;
    height: 533px; /* 9:16 Aspect Ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.power-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover .power-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.success-stats {
    display: flex;
    justify-content: space-between;
}

.stat {
    text-align: center;
    color: white;
}

.number {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b35, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.label {
    font-size: 0.7rem;
    opacity: 0.9;
}

.tools-badge {
    background: rgba(41, 128, 185, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: center;
}

.badge-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Card Footer */
.card-footer {
    margin-top: 2rem;
}

.power-mantra {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.mantra-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffa726, #ff6b35, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.mantra-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.mantra-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    background: rgba(41, 128, 185, 0.2);
    color: #3498db;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(41, 128, 185, 0.3);
}

/* CTA Buttons */
.cta-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.primary-cta {
    background: linear-gradient(135deg, #ff6b35, #e55039);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.secondary-cta {
    background: linear-gradient(135deg, #2980b9, #1a5276);
    color: white;
    box-shadow: 0 10px 30px rgba(41, 128, 185, 0.4);
}

.secondary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(41, 128, 185, 0.6);
}

.cta-icon {
    font-size: 1.3rem;
}

.cta-sparkle {
    animation: sparkle 2s infinite;
}

.cta-badge {
    background: #e74c3c;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.performance-note {
    text-align: center;
    margin-top: 1rem;
    color: #bdc3c7;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.note-icon {
    font-size: 1rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .power-box-section {
        padding: 2rem 1rem;
    }
    
    .power-card {
        padding: 1.5rem;
    }
    
    .card-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .inspiration-line {
        justify-content: center !important;
    }
    
    .line-text {
        min-width: auto;
        font-size: 0.8rem;
    }
    
    .main-image-container {
        width: 100%;
        max-width: 300px;
        height: 533px;
    }
    
    .mantra-text {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .power-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .power-container {
        gap: 2rem;
    }
    
    .power-card {
        padding: 1rem;
    }
    
    .main-image-container {
        height: 400px;
    }
    
    .mantra-text {
        font-size: 1rem;
    }
    
    .success-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}