/* AI Background Styles to Match Flyer */

/* Multiple AI Text Layers */
.ai-background-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Large AI Letters Pattern */
.ai-letters {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-weight: 900;
}

.ai-letter-1 {
    position: absolute;
    content: 'AI';
    font-size: 500px;
    color: rgba(96, 165, 250, 0.08);
    top: -10%;
    right: -5%;
    transform: rotate(-15deg);
}

.ai-letter-2 {
    position: absolute;
    content: 'A';
    font-size: 600px;
    color: rgba(59, 130, 246, 0.05);
    bottom: -20%;
    left: 10%;
    transform: rotate(10deg);
}

.ai-letter-3 {
    position: absolute;
    content: 'I';
    font-size: 450px;
    color: rgba(37, 99, 235, 0.06);
    top: 40%;
    left: 40%;
    transform: rotate(-5deg);
}

/* AI Icon Elements */
.ai-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.ai-icon {
    position: absolute;
    font-size: 80px;
    color: rgba(147, 197, 253, 0.3);
    animation: float-icon 20s ease-in-out infinite;
}

.ai-icon-1 {
    top: 15%;
    left: 70%;
    animation-delay: 0s;
}

.ai-icon-2 {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.ai-icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

/* Database/Server Icons */
.server-icon {
    position: absolute;
    width: 60px;
    height: 80px;
    opacity: 0.15;
}

.server-icon-1 {
    top: 25%;
    right: 15%;
    animation: pulse 4s ease-in-out infinite;
}

.server-icon-2 {
    bottom: 30%;
    left: 15%;
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* Network Connection Lines */
.network-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
    height: 1px;
    width: 200px;
    animation: scan-line 8s linear infinite;
}

.network-line-1 {
    top: 30%;
    left: -200px;
    animation-delay: 0s;
}

.network-line-2 {
    top: 50%;
    left: -200px;
    animation-delay: 2s;
}

.network-line-3 {
    top: 70%;
    left: -200px;
    animation-delay: 4s;
}

/* Circuit Board Pattern */
.circuit-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(59, 130, 246, 0.1) 50px, rgba(59, 130, 246, 0.1) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(59, 130, 246, 0.1) 50px, rgba(59, 130, 246, 0.1) 51px);
}

/* Digital Dots Pattern */
.digital-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: radial-gradient(circle, rgba(147, 197, 253, 0.4) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: dots-move 30s linear infinite;
}

/* Animations */
@keyframes float-icon {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.1);
    }
    50% {
        transform: translateY(10px) scale(0.9);
    }
    75% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes scan-line {
    0% {
        left: -200px;
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        left: calc(100% + 200px);
        opacity: 0;
    }
}

@keyframes dots-move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

/* Holographic Overlay */
.holo-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(147, 197, 253, 0.05) 50%, 
        transparent 70%);
    animation: holo-sweep 15s linear infinite;
}

@keyframes holo-sweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Gradient Mesh Background */
.gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: 
        radial-gradient(at 40% 20%, rgba(59, 130, 246, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(147, 197, 253, 0.1) 0px, transparent 50%),
        radial-gradient(at 10% 50%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(96, 165, 250, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(59, 130, 246, 0.1) 0px, transparent 50%);
}
