/* Background Decoration */
.decoration-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(105, 108, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    filter: blur(40px);
}

/* Mock Code Window */
.mock-window {
    background: #232734;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 320px;
    padding: 1.5rem;
    position: absolute;
    right: -100px;
    top: -120px;
    /* Moved further up */
    z-index: 0;
    opacity: 0.6;
    /* Reduced opacity */
    transform: rotate(8deg);
    transform: rotate(8deg);
    /* transition: all 0.5s ease; Removed */
}



.window-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #febc2e;
}

.dot-green {
    background: #28c840;
}

.code-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.w-90 {
    width: 90%;
}

.w-60 {
    width: 60%;
}

/* Enhanced Card Stack */
.card-stack {
    position: relative;
    z-index: 2;
}

.card-float-1 {
    transform: rotate(-5deg);
    transform: rotate(-5deg);
    /* transition: transform 0.3s ease; Removed */
}

.card-float-2 {
    transform: rotate(3deg) translate(20px, 20px);
    transform: rotate(3deg) translate(20px, 20px);
    /* transition: transform 0.3s ease; Removed */
}