/* Features: Glowing Terminal, Pulse Animation, Animated Bento Borders */

.wcu-section {
    padding: 100px 20px;
    background-color: #080808;
    color: #ffffff;
    overflow: hidden;
}
.wcu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
.wcu-left {
    flex: 1;
    position: relative;
}
.wcu-right {
    flex: 1.2;
}
.live-terminal {
    background-color: #111111;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 123, 255, 0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}
.live-terminal:hover {
    transform: perspective(1000px) rotateY(0deg);
}
.terminal-header {
    background-color: #1a1a1a;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}
.mac-buttons {
    display: flex;
    gap: 8px;
}
.mac-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.close { background-color: #ff5f56; }
.minimize { background-color: #ffbd2e; }
.maximize { background-color: #27c93f; }
.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff4757;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4757;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}
.terminal-body {
    padding: 40px 30px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    color: #cccccc;
    position: relative;
    min-height: 300px;
}
.code-line { margin-bottom: 15px; }
.keyword { color: #ff7b72; }
.variable { color: #79c0ff; }
.string { color: #a5d6ff; }
.function { color: #d2a8ff; }
.experience-glow-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
    border: 2px solid rgba(255,255,255,0.1);
}
.experience-glow-box h3 {
    font-size: 3rem;
    margin: 0;
    color: #ffffff;
    line-height: 1;
}
.experience-glow-box p {
    margin: 5px 0 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.wcu-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}
.wcu-header p {
    color: #aaaaaa;
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.bento-card {
    position: relative;
    padding: 30px 25px;
    border-radius: 12px;
    transition: transform 0.4s ease;
    overflow: hidden;
}
.bento-card::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(transparent, transparent, transparent, #007bff);
    animation: rotateBento 4s linear infinite;
    z-index: 1;
    opacity: 0.5;
}
.bento-card::after {
    content: '';
    position: absolute;
    inset: 1px; 
    background-color: #121212;
    border-radius: 11px;
    z-index: 2;
    transition: background-color 0.4s ease;
}
.bento-card i, .bento-card h4, .bento-card p {
    position: relative;
    z-index: 3;
}
.bento-card:hover {
    transform: translateY(-5px);
}
.bento-card:hover::after {
    background-color: #1a1a1a;
}
.highlight-card::before {
    background: conic-gradient(transparent, transparent, transparent, #ff4757);
    opacity: 0.7;
}
.highlight-card::after {
    background: linear-gradient(145deg, #111, #1a1a2e);
}
.highlight-card {
    grid-column: span 2;
}
@keyframes rotateBento {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bento-card i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
    transition: 0.4s;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}
.highlight-card i {
    color: #ff4757;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}
.bento-card:hover i {
    transform: scale(1.1);
    color: #00d4ff;
}
.bento-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}
.bento-card p {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .wcu-container { flex-direction: column; }
    .wcu-left, .wcu-right { width: 100%; }
    .experience-glow-box { bottom: 20px; right: 20px; padding: 15px 20px; }
    .experience-glow-box h3 { font-size: 2rem; }
}
@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .highlight-card { grid-column: span 1; }
    .terminal-body { font-size: 0.9rem; }
}