.interactive-gif-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f1419 0%, #082928 100%);
    overflow: hidden;
    padding: 6rem 2rem;
}

/* Animated Background GIF */
.gif-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.gif-background.active {
    opacity: 1;
}

.gif-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.background-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) blur(1px);
}

/* Floating particles effect */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-particles .particle {
    position: absolute;
    background: #00D9D5;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }
}

.floating-particles .particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particles .particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-particles .particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.floating-particles .particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 70%;
    animation-delay: 6s;
}

/* Content Container */
.interactive-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.interactive-title {
    font-size: clamp(2rem, 3.6vw, 4rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: -2px;
}

.interactive-title .highlight {
    background: linear-gradient(135deg, #00D9D5 0%, #40E0D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(0, 217, 213, 0.5);
}

/* Interactive Button */
.btn-interactive {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #00D9D5 0%, #008B8B 100%);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 217, 213, 0.3);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-interactive:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 213, 0.5);
}

.btn-interactive:active {
    transform: translateY(-1px);
}

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

.btn-interactive.playing .btn-icon {
    transform: scale(0);
    opacity: 0;
}

.btn-interactive.playing .btn-text::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: currentColor;
    margin-left: 8px;
    animation: none;
}

.btn-interactive.playing .btn-text::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: currentColor;
    margin-right: 4px;
}

/* Pulse animation on button when active */
.btn-interactive.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 217, 213, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 217, 213, 0.6);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .interactive-gif-section {
        padding: 4rem 1.5rem;
        min-height: 80vh;
    }

    .interactive-title {
        margin-bottom: 2rem;
    }

    .btn-interactive {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .interactive-gif-section {
        padding: 3rem 1rem;
    }

    .btn-interactive {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.btn-interactive:focus {
    outline: 2px solid #00D9D5;
    outline-offset: 4px;
}