html{
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1f2937;
    background-image: 
        linear-gradient(90deg, transparent 95%, rgba(75, 85, 99, 0.3) 100%),
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 85, 99, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 19px,
            rgba(75, 85, 99, 0.1) 19px,
            rgba(75, 85, 99, 0.1) 20px
        );
    background-size: 
        100% 100%,
        200px 200px,
        300px 300px,
        100% 20px;
    margin: 0;
    padding-top: 0;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" opacity="0.03"><text x="0" y="30" font-family="monospace" font-size="14" fill="%236b7280">1010101100101011</text><text x="0" y="60" font-family="monospace" font-size="14" fill="%236b7280">0010110101101010</text><text x="0" y="90" font-family="monospace" font-size="14" fill="%236b7280">1101001010101101</text><text x="0" y="120" font-family="monospace" font-size="14" fill="%236b7280">0101101011010010</text><text x="0" y="150" font-family="monospace" font-size="14" fill="%236b7280">1011001010101101</text><text x="0" y="180" font-family="monospace" font-size="14" fill="%236b7280">0101101010100110</text><text x="0" y="210" font-family="monospace" font-size="14" fill="%236b7280">1100101011010100</text><text x="0" y="240" font-family="monospace" font-size="14" fill="%236b7280">1010101101001011</text><text x="0" y="270" font-family="monospace" font-size="14" fill="%236b7280">0101101010101100</text><text x="0" y="300" font-family="monospace" font-size="14" fill="%236b7280">1011001010101101</text><text x="0" y="330" font-family="monospace" font-size="14" fill="%236b7280">0101101011010010</text><text x="0" y="360" font-family="monospace" font-size="14" fill="%236b7280">1010101100101011</text></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" opacity="0.02"><text x="0" y="15" font-family="monospace" font-size="10" fill="%234b5563">100110101001</text><text x="0" y="30" font-family="monospace" font-size="10" fill="%234b5563">010110100110</text><text x="0" y="45" font-family="monospace" font-size="10" fill="%234b5563">101001101010</text><text x="0" y="60" font-family="monospace" font-size="10" fill="%234b5563">010110011010</text><text x="0" y="75" font-family="monospace" font-size="10" fill="%234b5563">100110101001</text><text x="0" y="90" font-family="monospace" font-size="10" fill="%234b5563">010110100110</text><text x="0" y="105" font-family="monospace" font-size="10" fill="%234b5563">101001101010</text><text x="0" y="120" font-family="monospace" font-size="10" fill="%234b5563">010110011010</text></svg>');
    background-repeat: repeat;
    background-size: 400px 400px, 200px 200px;
    animation: matrixFlow 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes matrixFlow {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 400px, 0 200px;
    }
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(75, 85, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(75, 85, 99, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

div{
    display: inline;
    font-size: 2cqw;
    transition: all 0.3s ease;
}

.links{
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #d1d5db;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-size: 1.75cqw;
    padding: 8px 12px;
    border-radius: 6px;
    margin: 0 2px;
}

.links:hover{
    color: #ffffff;
    font-size: 1.85cqw;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    border: 1px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.links2{
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #60a5fa;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-size: 2cqw;
}

.links2:hover{
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.top{
    border: 3px solid #4b5563;
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.middle{
    border: 2px solid #4b5563;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    width: 65%;
    font-weight: bold;
    box-sizing: border-box;
    padding: 25px;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    color: #d1d5db;
}

.middlehead{
    font-size: 3cqw;
    font-weight: bold;
    padding-right: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.bottom{
    color: #9ca3af;
    position: fixed;
    font-size: 16px;
    margin-bottom: 15px;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    font-weight: 500;
}

.img1, .img2, .img3, .deepeep, .img4, .img5, .img6, .img7{
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid #374151;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #374151;
}

.img1:hover, .img2:hover, .img3:hover, .deepeep:hover, .img4:hover, .img5:hover, .img6:hover, .img7:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.img1 { width: 10cqw; height: 10cqw; }
.img2 { width: 40cqw; height: 18cqw; }
.img3 { width: 40cqw; height: 5cqw; }
.deepeep { width: 3cqw; height: 3cqw; }
.img4 { width: 45cqw; height: 9cqw; }
.img5 { width: 45cqw; height: 23cqw; }
.img6 { width: 45cqw; height: 11cqw; }
.img7 { width: 45cqw; height: 15cqw; }