/* Modern Creative Teaser Styles */

.creative-teaser-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-card, #fff);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        20px 20px 60px #d1d9e6,
        -20px -20px 60px #ffffff;
}

/* Visuals Section (Left) */
.teaser-visuals {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Las visuales no deben bloquear clics */
}

.game-preview-card {
    position: absolute;
    width: 180px;
    height: 240px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
    border-radius: 20px;
    box-shadow: 
        10px 10px 20px rgba(163, 177, 198, 0.3),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none; /* Las cards no deben bloquear clics */
}

.preview-content {
    font-size: 4rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.card-center {
    z-index: 3;
    transform: scale(1.1);
}

.card-left {
    z-index: 2;
    transform: translateX(-120px) rotate(-15deg) scale(0.9);
    opacity: 0.8;
}

.card-right {
    z-index: 2;
    transform: translateX(120px) rotate(15deg) scale(0.9);
    opacity: 0.8;
}

.teaser-visuals:hover .card-left {
    transform: translateX(-140px) rotate(-20deg) scale(0.95);
}

.teaser-visuals:hover .card-right {
    transform: translateX(140px) rotate(20deg) scale(0.95);
}

.teaser-visuals:hover .card-center {
    transform: scale(1.15) translateY(-10px);
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { bottom: 15%; right: 15%; animation-delay: 2s; }
.icon-3 { top: 20%; right: 20%; animation-delay: 4s; }

/* Content Section (Right) */
.teaser-content-modern {
    text-align: left;
    z-index: 10;
    position: relative;
}

.teaser-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.teaser-title-modern {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.teaser-subtitle-modern {
    font-size: 1.5rem;
    color: #718096;
    margin-bottom: 2rem;
    font-weight: 300;
}

.teaser-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
}

.teaser-description-modern {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.teaser-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(118, 75, 162, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 100;
    pointer-events: auto !important;
}

.teaser-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(118, 75, 162, 0.4);
}

.teaser-btn-modern .btn-icon {
    font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .creative-teaser-modern {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
        text-align: center;
    }

    .teaser-content-modern {
        text-align: center;
    }

    .teaser-features {
        justify-content: center;
    }

    .teaser-description-modern {
        margin: 0 auto 2.5rem;
    }

    .teaser-visuals {
        height: 300px;
    }

    .game-preview-card {
        width: 140px;
        height: 190px;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
