/* TechDeen Premium Landing Sections CSS */
:root {
    --primary-glow: rgba(62, 166, 255, 0.4);
    --langtech-color: #00ffcc;
    --langtech-rgb: 0, 255, 204;
    --deenstory-color: #ff4081;
    --deenstory-rgb: 255, 64, 129;
    --hizli-okuma-color: #ffca28;
    --hizli-okuma-rgb: 255, 202, 40;
    --faslikelam-color: #8b5cf6;
    --faslikelam-rgb: 139, 92, 246;
    --section-bg: #0d1117;
}

#page-container {
    overflow-x: hidden;
}

.landing-page {
    width: 100%;
}

.full-section {
    min-height: 80vh;
    display: flex !important;
    align-items: center;
    position: relative;
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
}

.bg-alt {
    background: rgba(255, 255, 255, 0.02);
}

.full-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
}

.full-section .container.reverse {
    flex-direction: row-reverse;
}


.feature-content {
    flex: 1;
    z-index: 2;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

/* Typography */
.category-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--langtech-color);
    margin-bottom: 15px;
    background: rgba(0, 255, 204, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
}

#feature-deenstory .category-tag {
    color: var(--deenstory-color);
    background: rgba(255, 64, 129, 0.1);
}

#feature-hizli-okuma .category-tag {
    color: var(--hizli-okuma-color);
    background: rgba(255, 202, 40, 0.1);
}

.main-feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.feature-lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--langtech-color), #007bff);
    color: #0d1117 !important;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
}

.btn-premium.color-pink {
    background: linear-gradient(135deg, var(--deenstory-color), #7b1fa2);
    box-shadow: 0 10px 30px rgba(255, 64, 129, 0.3);
}

.btn-premium.color-gold {
    background: linear-gradient(135deg, var(--hizli-okuma-color), #f57c00);
    box-shadow: 0 10px 30px rgba(255, 202, 40, 0.3);
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Visuals (CSS Only) */
.tech-orb {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, var(--langtech-color), transparent);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 100px rgba(0, 255, 204, 0.2);
    animation: orbFloat 6s ease-in-out infinite;
}

.tech-orb::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(0, 255, 204, 0.2);
    border-radius: 50%;
    animation: orbPulse 4s linear infinite;
}

.story-book-icon {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, var(--deenstory-color), transparent);
    border-radius: 20px;
    position: relative;
    transform: rotateY(-20deg);
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    animation: bookFloat 5s ease-in-out infinite;
}

.story-book-icon::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
}

.speed-bolt-icon {
    font-size: clamp(8rem, 15vw, 15rem);
    color: var(--hizli-okuma-color);
    filter: drop-shadow(0 0 30px rgba(255, 202, 40, 0.4));
    animation: boltFlash 3s ease-in-out infinite;
    position: relative;
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
    font-weight: 900;
}

.speed-bolt-icon::before {
    content: '\f0e7'; /* FontAwesome Bolt */
}


/* Video Section */
.video-section {
    position: relative;
    z-index: 5;
    background: rgba(0,0,0,0.3);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(62, 166, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
}

.wa-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 4rem;
    color: #25d366;
    margin-bottom: 15px;
}

.video-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Animations */
@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes orbPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes bookFloat {
    0%, 100% { transform: rotateY(-20deg) translateY(0); }
    50% { transform: rotateY(-10deg) translateY(-20px); }
}

@keyframes boltFlash {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .container {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    
    .feature-content {
        order: 2;
    }
    
    .feature-visual {
        order: 1;
        transform: scale(0.8);
    }
    
    .feature-lead {
        margin: 0 auto 30px;
    }
    
    .main-feature-title {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .main-feature-title {
        font-size: 2.2rem;
    }
    
    .btn-premium {
        width: 100%;
        justify-content: center;
    }
    
    .tech-orb {
        width: 180px;
        height: 180px;
    }
    
    .story-book-icon {
        width: 150px;
        height: 200px;
    }
    
    .speed-bolt-icon {
        font-size: 10rem;
    }
}

/* Global Reset for Landing to prevent style.css conflicts */
main.landing-page {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* Ensure sections have their own identity and are visible */
#hero-langtech {
    background: linear-gradient(rgba(13, 17, 23, 0.9), rgba(13, 17, 23, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#feature-deenstory {
    background: linear-gradient(rgba(13, 17, 23, 0.92), rgba(13, 17, 23, 0.9));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#feature-hizli-okuma {
    background: linear-gradient(rgba(13, 17, 23, 0.9), rgba(13, 17, 23, 0.85));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#promo-video {
    background: linear-gradient(rgba(13, 17, 23, 0.92), rgba(13, 17, 23, 0.88));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#section-blog {
    background: linear-gradient(rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0.9));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#section-youtube {
    background: linear-gradient(rgba(13, 17, 23, 0.92), rgba(13, 17, 23, 0.85));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 991px) {
    #hero-langtech, #feature-deenstory, #feature-hizli-okuma, #promo-video, #section-blog, #section-youtube {
        background-attachment: scroll;
        background-position: center top; /* Align to top for better visibility on mobile */
        background-size: cover;
    }
    
    /* For specifically long sections on mobile, ensure image repeats naturally */
    #section-blog, #section-youtube {
        background-size: 100% auto; 
        background-repeat: repeat-y;
        background-position: top center;
    }
}




/* Ultra-Modern Clickable Cards */
.update-card-link {
    text-decoration: none !important;
    display: block;
    color: inherit;
    height: 100%;
}

.update-card {
    background: rgba(30, 35, 45, 0.4) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    max-width: 340px; /* Slightly narrower */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Tighter group for cards */
#section-blog .row, #section-youtube .row {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}



.update-card-link:hover .update-card {
    transform: translateY(-10px);
    background: rgba(40, 45, 60, 0.6) !important;
    border-color: rgba(62, 166, 255, 0.3) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.update-card-link.is-video:hover .update-card {
    border-color: rgba(255, 77, 77, 0.4) !important;
}


.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6 / 1;
    overflow: hidden;
}


.card-visual img, 
.card-visual .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.update-card-link:hover .card-visual img,
.update-card-link:hover .card-visual .video-thumb {
    transform: scale(1.1);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.update-card-link:hover .hover-overlay {
    opacity: 1;
}

.hover-icon {
    width: 50px;
    height: 50px;
    background: rgba(62, 166, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.update-card-link:hover .hover-icon {
    transform: translateY(0);
}

.update-card-link.is-video .hover-icon {
    background: rgba(255, 77, 77, 0.9);
}


.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.update-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #3ea6ff;
    font-weight: 700;
    margin-bottom: 12px;
    opacity: 0.8;
}

.update-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #8b949e;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Specific badge colors */
.video-badge {
    color: #ff4d4d;
}

/* Light Mode Support */
body.light-mode .main-feature-title {
    color: #1a202c !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

body.light-mode .category-tag {
    background: rgba(0, 0, 0, 0.06);
    color: #1a202c !important; /* Genel bir koyu renk veya marka renklerinin koyu versiyonunu kullanabiliriz */
}

body.light-mode #hero-langtech .category-tag {
    color: #008b6e !important; /* Daha koyu yeşil */
    background: rgba(0, 139, 110, 0.1);
}

body.light-mode #feature-deenstory .category-tag {
    color: #c2185b !important; /* Daha koyu pembe */
    background: rgba(194, 24, 91, 0.08);
}

body.light-mode #feature-hizli-okuma .category-tag {
    color: #b28900 !important; /* Daha koyu altın/sarı */
    background: rgba(178, 137, 0, 0.1);
}

body.light-mode .feature-lead {
    color: #4a5568 !important;
}

body.light-mode .bg-alt {
    background: rgba(250, 249, 247, 1) !important;
}

body.light-mode #hero-langtech {
    background: linear-gradient(rgba(250, 249, 247, 0.95), rgba(250, 249, 247, 0.9));
}

body.light-mode #feature-deenstory {
    background: linear-gradient(rgba(240, 242, 245, 0.96), rgba(240, 242, 245, 0.94));
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

body.light-mode #feature-hizli-okuma {
    background: linear-gradient(rgba(250, 249, 247, 0.95), rgba(250, 249, 247, 0.9));
}

body.light-mode #promo-video {
    background: linear-gradient(rgba(240, 242, 245, 0.96), rgba(240, 242, 245, 0.94));
}

body.light-mode #section-blog {
    background: linear-gradient(rgba(250, 249, 247, 0.98), rgba(250, 249, 247, 0.95));
}

body.light-mode #section-youtube {
    background: linear-gradient(rgba(240, 242, 245, 0.96), rgba(240, 242, 245, 0.94));
}

body.light-mode .update-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

body.light-mode .update-card-link:hover .update-card {
    background: #ffffff !important;
    border-color: rgba(62, 166, 255, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .update-title {
    color: #1a202c !important;
}

body.light-mode .update-footer {
    border-color: rgba(0, 0, 0, 0.06);
    color: #718096 !important;
}

body.light-mode .video-wrapper {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

body.light-mode .video-overlay {
    background: rgba(255, 255, 255, 0.4);
}

body.light-mode .video-overlay span {
    color: #1a202c;
}

body.light-mode .section-title {
    color: #1a202c !important;
}

body.light-mode .story-book-icon {
    box-shadow: 15px 15px 40px rgba(0,0,0,0.15);
}

/* Projects Showcase Light Mode */
body.light-mode #projects-showcase {
    background: #f8fafc;
    background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,0.03) 1px, transparent 0);
}

body.light-mode .showcase-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

body.light-mode .showcase-card::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(255,255,255,1));
    opacity: 1;
}

body.light-mode .card-label,
body.light-mode .card-info h2 {
    color: #1a202c !important;
}

body.light-mode .card-info p {
    color: #4a5568 !important;
}

body.light-mode .showcase-card:hover, 
body.light-mode .showcase-card.active {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

body.light-mode .card-icon-main {
    opacity: 0.15;
}

body.light-mode .showcase-card:hover .card-icon-main, 
body.light-mode .showcase-card.active .card-icon-main {
    opacity: 0.8;
}

@media (max-width: 991px) {
    body.light-mode .showcase-card.active .card-icon-main {
        opacity: 0.1;
    }
}

/* Ensure FontAwesome is available for bolt */
.speed-bolt-icon {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
    font-weight: 900;
}

/* PROJECTS SHOWCASE (EXPANDING CARDS) */
#projects-showcase {
    width: 100%;
    min-height: auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px; /* Üst boşluk navbar'ın altında kalmaması için artırıldı */
    background: var(--section-bg);
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
}







.showcase-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 400px;
    height: 42vh;
    gap: 12px;
    z-index: 5;
}




.showcase-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px; /* Padding biraz daraltıldı */
    text-decoration: none !important;
}




.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.8));
    z-index: 1;
    opacity: 0.8;
}

/* Background Gradients/Colors for cards */
.showcase-card[data-project="langtech"] { --project-color: var(--langtech-color); --project-rgb: var(--langtech-rgb); }
.showcase-card[data-project="deenstory"] { --project-color: var(--deenstory-color); --project-rgb: var(--deenstory-rgb); }
.showcase-card[data-project="hizliokuma"] { --project-color: var(--hizli-okuma-color); --project-rgb: var(--hizli-okuma-rgb); }
.showcase-card[data-project="faslikelam"] { --project-color: var(--faslikelam-color); --project-rgb: var(--faslikelam-rgb); }

.showcase-card:hover, .showcase-card.active {
    flex: 4;
    border-color: var(--project-color);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--project-rgb), 0.1);
}


.card-icon-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: var(--project-color);
    opacity: 0.3;
    transition: all 0.7s ease;
    z-index: 0;
}

.showcase-card:hover .card-icon-main, .showcase-card.active .card-icon-main {
    top: 40px;
    left: 40px;
    transform: translate(0, 0) scale(0.6);
    opacity: 1;
}

.card-info {
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.showcase-card:hover .card-info, .showcase-card.active .card-info {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
}

/* Staggered Animations for Elements Inside Card */
.card-tag, .card-info h2, .card-info p, .card-btn-mini {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.showcase-card:hover .card-tag, .showcase-card.active .card-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.showcase-card:hover .card-info h2, .showcase-card.active .card-info h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.showcase-card:hover .card-info p, .showcase-card.active .card-info p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.showcase-card:hover .card-btn-mini, .showcase-card.active .card-btn-mini {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Closing: All elements fade out quickly and simultaneously */
.showcase-card:not(:hover):not(.active) .card-tag,
.showcase-card:not(:hover):not(.active) .card-info h2,
.showcase-card:not(:hover):not(.active) .card-info p,
.showcase-card:not(:hover):not(.active) .card-btn-mini {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease-out;
}





.card-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.card-info p {
    color: #a0aec0;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 20px;
    white-space: normal;
    max-width: 400px;
}


.card-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(var(--project-rgb), 0.1);
    color: var(--project-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}


.card-btn-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    background: var(--project-color);
    color: #0d1117 !important;
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.card-btn-mini:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Card titles always visible when collapsed */
.card-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 5;
    transition: opacity 0.3s;
}

.showcase-card:hover .card-label, .showcase-card.active .card-label {
    opacity: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    #projects-showcase {
        padding: 70px 15px 40px;
        min-height: auto;
    }
    
    .showcase-container {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .showcase-card {
        height: 120px;
        padding: 24px;
        flex: none;
        transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); /* Smoother expansion */
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Move to top on mobile for better flow */
    }
    
    .showcase-card.active {
        height: 420px;
        padding-top: 80px; /* Leave space for icon/label */
    }
    
    .card-label {
        writing-mode: horizontal-tb;
        transform: none;
        bottom: auto;
        top: 25px;
        left: 25px;
        font-size: 1.2rem;
    }
    
    .card-icon-main {
        right: 24px;
        left: auto;
        top: 24px;
        transform: scale(0.4) translate(0, 0);
        opacity: 0.5;
        z-index: 5;
    }
    
    .showcase-card.active .card-icon-main {
        opacity: 0.15;
        transform: scale(0.8) translate(10px, 10px);
    }
    
    .card-info {
        opacity: 0;
        visibility: hidden;
        display: block !important; /* Force block to allow inner animations */
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 20px;
    }
    
    .showcase-card.active .card-info {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .card-info h2 {
        font-size: 1.8rem;
    }
}

/* Background glow effects */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.05;
}

#glow-1 { top: -100px; left: -100px; background: var(--langtech-color); }
#glow-2 { bottom: -100px; right: -100px; background: var(--deenstory-color); }