* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Orbitron', Arial, sans-serif;
    background: radial-gradient(circle at center, #0f172a 0%, #020617 70%);
    color: #e2e8f0;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(34,211,238,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,85,247,0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    from { transform: translate(0,0); }
    to { transform: translate(50px,50px); }
}



.container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
    padding: 80px 0;
}



h1 {
    font-size: 42px;
    margin-bottom: 10px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #22d3ee, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(34,211,238,0.3);
}

h2 {
    margin-top: 60px;
    font-size: 24px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 14px;
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #22d3ee, #a855f7);
    box-shadow: 0 0 12px rgba(168,85,247,0.6);
}



p {
    line-height: 1.8;
    max-width: 800px;
    font-size: 16px;
    opacity: 0.9;
}



.section {
    margin-top: 40px;
}



.logo-box {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168,85,247,0.3);
    padding: 30px;
    margin-top: 20px;
    box-shadow: 
        0 0 30px rgba(168,85,247,0.2),
        inset 0 0 20px rgba(34,211,238,0.1);
    transition: 0.4s ease;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 40px rgba(168,85,247,0.4),
        inset 0 0 25px rgba(34,211,238,0.2);
}



footer {
    margin-top: 100px;
    font-size: 14px;
    opacity: 0.7;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}



@media (max-width: 768px) {

    .container {
        width: 92%;
        padding: 60px 0;
    }

    h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

}


body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.02) 0px,
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 999;
}



.section,
.logo-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.section:hover,
.logo-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 40px rgba(168,85,247,0.4),
        0 0 60px rgba(34,211,238,0.2);
}


.cursor-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(34,211,238,0.25) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 998;
}