/* Basic Reset and Body Styling */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hides any overflow */
}

/* Main container for computer and text */
.main-content {
    text-align: center;
    /* ADDED: Smooths the mouse-move effect */
    transition: transform 0.1s ease-out;
}

/* The Computer Icon */
.computer-icon {
    width: 600px; /* Your specified size */
    
    /* KEY CHANGE: Applying a drop-shadow for a form-fitting glow */
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.7)) drop-shadow(0 0 35px rgba(0, 255, 0, 0.5));
    
    /* Animation is applied directly to the icon */
    animation: float 4s ease-in-out infinite;
}

/* Floating animation keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Ticker text styling */
.ticker {
    margin-top: 30px;
    font-weight: bold;
    font-size: 3.2em; /* Your specified size */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker p {
    margin: 0;
    padding: 2px;
}

/* Twitter Icon Link Styling */
.twitter-link {
    position: absolute;
    top: 25px;
    right: 30px;
}

.twitter-link img {
    width: 64px; /* Adjust size as needed */
    transition: transform 0.3s ease;
}

.twitter-link img:hover {
    transform: scale(1.15); /* Slight zoom on hover */
    filter: drop-shadow(0 0 5px #ffffff);
}