/* Base Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Share Tech Mono', monospace;
    color: #00ff00;
    background-color: #000;
    overflow-x: hidden;
}

/* Matrix Canvas */
#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Background Image Blur */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.gyazo.com/d4b7f5895fa71e69ab76c1aa53896095.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(8px) brightness(0.4);
    z-index: -4;
}

/* Container */
.container {
    width: 95%;
    max-width: 960px;
    margin: auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #00ff00;
    box-shadow: 0 0 15px #00ff00;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-symbol {
    color: #00ff00;
    font-size: 1.5em;
}

.tagline {
    color: #33ff33;
    font-style: italic;
    margin-top: 5px;
}

/* Sections */
.about,
.product,
.socials {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(17, 17, 17, 0.85);
    border-left: 4px solid #00ff00;
    box-shadow: inset 0 0 10px #00ff00;
    box-sizing: border-box;
}

/* Product Description */
.product-description {
    text-align: center;
    font-size: 1.1em;
    color: #99ff99;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    background-color: #00ff00;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 10px #00ff00;
    display: flex;
    align-items: center;
}

.social-btn i {
    margin-right: 8px;
    color: #000;
    transition: color 0.3s ease;
}

.social-btn:hover {
    background-color: #000;
    color: #00ff00;
    border: 1px solid #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.social-btn:hover i {
    color: #00ff00;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.9em;
    border-top: 1px solid #00ff00;
    color: #33ff33;
}

/* ✅ Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
        font-size: 1em;
    }
}

@media screen and (max-width: 480px) {
    .tagline {
        font-size: 0.9em;
    }

    .social-btn {
        font-size: 0.95em;
        padding: 12px;
    }
}
