/* Global Styles */
body {
    font-family: 'Press Start 2P', cursive;
    background: url('assets/images/gaming-background.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header Styles */
.header-area {
    background-color: black;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 22px;
    color: #76ff03;
    font-family: 'Press Start 2P', cursive;
    text-shadow: 0 0 10px #76ff03;
    transition: 0.3s;
}

.navbar-brand:hover {
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700;
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.navbar-nav .nav-link {
    font-size: 16px;
    color: white;
    text-shadow: 0 0 5px white;
    margin: 5px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}

.navbar-toggler {
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.btn-animated {
    padding: 10px 20px;
    background: linear-gradient(to right, #76ff03, #00e676);
    border: none;
    border-radius: 30px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 0 10px #76ff03;
    margin: 5px 0;
}

.btn-animated:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ffd700;
    background: linear-gradient(to right, #ffd700, #ff5722);
}

/* Welcome Section */
.welcome-area {
    text-align: center;
    padding: 60px 10px;
}

.welcome-area h1 {
    font-size: 28px;
    text-shadow: 0 0 10px #ff6ec7;
}

.welcome-area p {
    font-size: 16px;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Features Section */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 15px;
    text-align: center;
    gap: 15px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    width: 90%;
    max-width: 300px;
    margin: 10px 0;
}

.feature-item img {
    width: 50px;
    margin-bottom: 10px;
}

.feature-item h5 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #2b2d42;
    padding: 15px 0;
    text-align: center;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Global Styles */
body {
    font-family: 'Press Start 2P', cursive;
    background: linear-gradient(135deg, #3a1c71, #d76d77, #ffaf7b);
    color: white;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    margin-top: 50px;
}

/* Clickable Code */
.clickable-code {
    background-color: #222;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.clickable-code:hover {
    background-color: #444;
}

/* Facebook Button */
.btn-facebook {
    background-color: #3b5998;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-facebook:hover {
    background-color: #2d4373;
}

/* Twitter Button */
.btn-twitter {
    background-color: #1da1f2;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-twitter:hover {
    background-color: #0a95dd;
}

/* Form Control */
input.form-control {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    transition: border-color 0.3s ease;
}

input.form-control:focus {
    border-color: #76ff03;
    outline: none;
    box-shadow: 0 0 5px #76ff03;
}


footer a {
    color: #00e676;
    transition: 0.3s;
}

footer a:hover {
    color: #ffd700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .welcome-area h1 {
        font-size: 24px;
    }

    .welcome-area p {
        font-size: 14px;
    }

    .btn-animated {
        width: 100%;
        max-width: 250px;
    }

    .feature-item {
        width: 100%;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .navbar-toggler {
        font-size: 20px;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .welcome-area h1 {
        font-size: 20px;
    }

    .feature-item img {
        width: 40px;
    }
}
