body {
    background-color: #0d0d0d; /* Darker background for a more immersive feel */
    color: #f0f0f0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    
}

.container {
    width: 80%;
    margin: auto;
}

.header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #007bff; /* Border to separate header */
}

.intro, .tools, .power {
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    background-color: #333333;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); /* Increased shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transitions */
}

.intro:hover, .tools:hover, .power:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9); /* Enhance shadow on hover */
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Increased border-radius for better aesthetics */
}

.feature-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    background-color: #292b2c;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px; /* Smoother corners */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-3px); /* Lift effect on hover */
}

.virtual-terminal {
    background-color: #1e1e1e;
    color: #00ff00; /* Neon green for text */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Courier New', Courier, monospace;
    animation: glow 1s infinite alternate; /* Neon glow animation */
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #007bff;
    }
    100% {
        text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00, 0 0 50px #007bff;
    }
}

.terminal-header {
    background-color: #007bff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Subtle text shadow */
}

.terminal-output {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
    background-color: #282a36; /* Slightly lighter background for output */
    padding: 10px;
    border-radius: 5px;
}

.user {
    color: #39ff14; /* Bright green for the user prompt */
}

.command {
    color: #ffffff; /* White for the command */
}

.response {
    color: #f8f8f2; /* Light gray for command output */
    margin-left: 20px;
}

.terminal-input {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #282a36;
    color: #ffffff;
    border-radius: 5px;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3); /* Shadow for input */
}

.terminal-input::placeholder {
    color: #888;
}

.advantages, .how-it-works, .installation {
    margin: 20px;
    font-family: Arial, sans-serif;
    border: 1px solid #495057; /* Border for section separation */
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #00bcd4; /* Teal for a hacking vibe */
}

h3 {
    color: #00bcd4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Text shadow for depth */
}

.advantage-container, .disadvantage-container {
    background-color: #f1a578;
    border: 1px solid #e49161;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

li strong {
    color: #40babe; /* Dark gray for better readability */
}

.footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
}

.hidden-info {
    margin-top: 10px;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.show-more-btn, .show-more {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.show-more-btn:hover, .show-more:hover {
    background-color: #0056b3;
}

.terminal {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: auto;
    white-space: pre;
    margin-top: 10px;
}

.installation {
    background-color: #212529;
    color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.installation-steps {
    margin: 0 auto;
    max-width: 800px;
}

.step {
    background-color: #343a40;
    border: 1px solid #495057;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    transition: background-color 0.3s, transform 0.3s;
}

.step:hover {
    background-color: #495057;
    transform: scale(1.02); /* Scale effect on hover */
}

.step-details {
    margin-top: 10px;
    background-color: #f9f9f9;
    color: #343a40;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    display: none; /* Initially hidden */
}

img {
    width: 100px;
    margin-top: 10px;
}

.social-buttons {
    background-color: #212529;
    color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin: 20px auto;
    max-width: 800px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.social-logos {
    margin-bottom: 50px;
}

.social-logo {
    margin: 0 50px;
    display: inline-block;
    transition: transform 0.3s;
}

.social-logo img {
    width: 40px;
    height: auto;
}

.social-logo:hover {
    transform: scale(1.1);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.action-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.action-btn:hover {
    background-color: #0056b3;
}
   .tooltip {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            width: 200px;
            background-color: #555;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%; /* Position above the text */
            left: 50%;
            margin-left: -100px; /* Center the tooltip */
            opacity: 0;
            transition: opacity 0.3s;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }

        .command-list {
            margin-top: 20px;
            font-family: Arial, sans-serif;
        }

        .command {
            margin: 5px 0;
        }
        #logo-video {
            position: absolute; /* Positioning the video */
            top: 50%; /* Center vertically */
            left: 50%; /* Center horizontally */
            transform: translate(-50%, -50%); /* Centering the video */
            border: 2px solid #00ff00; /* Optional: add a border */
            border-radius: 10px; /* Optional: rounded corners */
        }
        .portal-button {
            background: #007bff; /* Solid background color */
            color: white;
            border: none;
            padding: 15px 30px; /* Reduced padding for a smaller button */
            font-size: 20px; /* Smaller text */
            border-radius: 25px; /* Rounded button */
            cursor: pointer;
            position: relative;
            overflow: hidden; /* Clip the pseudo-element */
            transition: color 0.3s, transform 0.3s, box-shadow 0.3s; /* Transition for text color, button scale, and shadow */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 15px 30px rgba(0, 0, 0, 0.2);
            outline: none; /* Remove outline */
        }
        
        .portal-button:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%; /* Size of the radial effect */
            height: 300%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.6s ease-out;
            z-index: 0; /* Make sure it's behind the button text */
        }
        
        .portal-button:hover:before {
            transform: translate(-50%, -50%) scale(1); /* Animate scaling on hover */
        }
        
        .portal-button:hover {
            color: #fff; /* Change text color on hover */
            transform: translateY(-5px) scale(1.05); /* Lift effect on hover */
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), 0 25px 50px rgba(0, 0, 0, 0.3); /* Enhanced shadow for depth */
        }
        
        /* Twister animation */
        @keyframes twister {
            0% {
                transform: scale(1) rotate(0deg);
            }
            50% {
                transform: scale(1.2) rotate(360deg);
            }
            100% {
                transform: scale(1) rotate(720deg);
            }
        }
        
        .twister-animation {
            animation: twister 2s ease forwards; /* Apply twister animation */
        }
        