* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: '04b03', monospace, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: #00CCFF;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: normal;
    font-style: normal;
    position: relative;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 204, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 204, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    line-height: 1.2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.title {
    font-size: 150px;
    font-weight: normal;
    margin-bottom: 10px;
    letter-spacing: 8px;
    color: #00CCFF;
    line-height: 1;
    text-shadow: 
        0 0 20px rgba(0, 204, 255, 0.5),
        0 0 40px rgba(0, 204, 255, 0.3),
        0 0 60px rgba(0, 204, 255, 0.2);
}

.title-underline {
    height: 3px;
    background: linear-gradient(90deg, transparent, #00CCFF, transparent);
    margin: 10px auto;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

.slogan {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #00CCFF;
    line-height: 1.3;
    letter-spacing: 2px;
}

.services {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 40px;
    color: #ff0000;
    letter-spacing: 0px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.social-link {
    font-size: 24px;
    font-weight: normal;
    color: #00CCFF !important;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
}

.social-link:hover {
    color: #FFFFFF !important;
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(0, 204, 255, 0.8);
}

.social-link:active {
    transform: scale(0.98);
    color: #FFFFFF !important;
}

.social-link:visited {
    color: #00CCFF !important;
}

.social-link:visited:hover {
    color: #FFFFFF !important;
}

.copyright {
    font-size: 16px;
    font-weight: normal;
    color: #00CCFF;
    opacity: 0.6;
    line-height: 1.4;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .title {
        font-size: 120px;
        letter-spacing: 6px;
    }
    
    .slogan {
        font-size: 20px;
    }
    
    .services {
        font-size: 14px;
    }
    
    .social-links {
        gap: 18px;
    }
    
    .social-link {
        font-size: 20px;
        padding: 8px 12px;
    }
    
    .copyright {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .title {
        font-size: 80px;
        letter-spacing: 4px;
    }
    
    .slogan {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .services {
        font-size: 13px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .social-links {
        gap: 15px;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .social-link {
        font-size: 18px;
        padding: 12px 16px;
        min-height: 48px;
    }
    
    .copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .logo-wrapper {
        margin-bottom: 15px;
    }
    
    .title {
        font-size: 60px;
        letter-spacing: 3px;
        margin-bottom: 8px;
    }
    
    .slogan {
        font-size: 16px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    
    .services {
        font-size: 12px;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .social-links {
        gap: 12px;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .social-link {
        font-size: 16px;
        padding: 14px 20px;
        min-height: 50px;
        width: 80%;
        max-width: 300px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .title {
        font-size: 48px;
        letter-spacing: 2px;
    }
    
    .slogan {
        font-size: 14px;
    }
    
    .services {
        font-size: 11px;
    }
    
    .social-link {
        font-size: 15px;
        padding: 12px 18px;
        width: 90%;
    }
    
    .copyright {
        font-size: 11px;
    }
}