/* ================================
   GEOMETRIC ASSETS & AESTHETIC ELEMENTS
================================ */

/* Geometric Container */
.geometric-assets {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Aesthetic Lines */
.geometric-line {
    position: absolute;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.3) 50%,
        transparent 100%);
    height: 1px;
    animation: line-pulse 4s ease-in-out infinite;
}

.geometric-line.vertical {
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 212, 170, 0.3) 50%,
        transparent 100%);
}

.geometric-line.diagonal {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 153, 255, 0.3) 50%,
        transparent 100%);
}

@keyframes line-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.1);
    }
}

/* Geometric Circles */
.geometric-circle {
    position: absolute;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: circle-expand 6s ease-in-out infinite;
}

.geometric-circle.gradient-border {
    border: 2px solid transparent;
    background: linear-gradient(var(--dark-bg), var(--dark-bg)) padding-box,
                linear-gradient(135deg, #FF6B35 0%, #00D4AA 50%, #0099FF 100%) border-box;
}

@keyframes circle-expand {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* Dotted Grid Pattern */
.dot-grid {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    opacity: 0.1;
}

.dot-grid-item {
    width: 3px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 50%;
    animation: dot-pulse 3s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Corner Brackets */
.corner-bracket {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 210, 63, 0.2);
}

.corner-bracket.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-bracket.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.corner-bracket.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.corner-bracket.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Hexagon Grid */
.hexagon {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.05;
}

.hexagon svg {
    width: 100%;
    height: 100%;
}

.hexagon polygon {
    fill: none;
    stroke: var(--gradient-teal);
    stroke-width: 1;
    animation: hex-rotate 20s linear infinite;
}

@keyframes hex-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Computer Graphics */
.computer-illustration {
    position: absolute;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.computer-illustration:hover {
    opacity: 0.3;
    transform: scale(1.1);
}

.computer-illustration svg {
    filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.3));
}

/* Floating Geometric Shapes */
.floating-geometry {
    position: absolute;
    animation: float-geometry 15s ease-in-out infinite;
}

@keyframes float-geometry {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, -50px) rotate(240deg);
    }
}

/* Circuit Board Pattern */
.circuit-pattern {
    position: absolute;
    opacity: 0.03;
}

.circuit-line {
    stroke: var(--gradient-blue);
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 5, 10;
    animation: circuit-flow 3s linear infinite;
}

@keyframes circuit-flow {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -15;
    }
}

/* Tech Grid Overlay */
.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-slide 20s linear infinite;
}

@keyframes grid-slide {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(50px, 50px);
    }
}

/* Connecting Lines */
.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 107, 53, 0.5),
        transparent);
    transform-origin: left center;
    animation: connection-pulse 3s ease-in-out infinite;
}

@keyframes connection-pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(1);
    }
}

/* Plus Signs Grid */
.plus-grid {
    position: absolute;
    display: flex;
    gap: 30px;
    opacity: 0.05;
}

.plus-sign {
    position: relative;
    width: 20px;
    height: 20px;
}

.plus-sign::before,
.plus-sign::after {
    content: '';
    position: absolute;
    background: var(--gradient-yellow);
}

.plus-sign::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.plus-sign::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Aesthetic Arrows */
.arrow-decoration {
    position: absolute;
    opacity: 0.1;
}

.arrow-decoration svg {
    stroke: var(--gradient-orange);
    stroke-width: 2;
    fill: none;
    animation: arrow-move 4s ease-in-out infinite;
}

@keyframes arrow-move {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Minimal Dots Pattern */
.dots-pattern {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    opacity: 0.1;
}

.dot {
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--gradient-teal) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Dividers */
.section-divider {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.2) 25%,
        rgba(0, 212, 170, 0.2) 50%,
        rgba(0, 153, 255, 0.2) 75%,
        transparent 100%);
    animation: divider-glow 4s ease-in-out infinite;
}

@keyframes divider-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}