/* Fully updated styles.css - Fixed Slider Box & Functionality */

body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.navbar {
    background-color: #1a1a1a;
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 255, 0, 0.2);
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 30px;
}

.navbar ul li a {
    text-decoration: none;
    color: #4caf50;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.navbar ul li a:hover {
    color: #ffcc00;
    text-shadow: 0px 0px 10px #ffcc00;
}

.hero {
    margin-top: 100px;
    text-align: center;
    padding: 50px;
    background: radial-gradient(circle, rgba(10,10,10,1) 0%, rgba(5,5,5,1) 100%);
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 255, 0, 0.2);
}

.wallet-box, .instructions, .slider-box {
    text-align: center;
    padding: 30px;
    background-color: #1f1f1f;
    border: 2px solid #4caf50;
    border-radius: 15px;
    margin: 50px auto;
    width: 90%;
    max-width: 600px;
    box-shadow: 0px 0px 15px rgba(0, 255, 0, 0.4);
}

#wallet {
    font-size: 12px; /* Adjust size as needed */
    font-weight: bold;
    display: block; /* Ensures it does not break formatting */
    text-align: center;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background-color: #4caf50;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
}

.copy-btn {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: #ffcc00;
    color: black;
    box-shadow: 0px 0px 15px rgba(255, 255, 0, 0.8);
}

.timer {
    text-align: center;
    margin-top: 40px;
    font-size: 22px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0px 0px 10px #ffcc00;
}

/* Fixed Slider Visibility */
.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

/* Styled Slider Buttons */
.slider-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.slider-controls button {
    background-color: #4caf50;
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.8);
}

.slider-controls button:hover {
    background-color: #ffcc00;
    color: black;
    box-shadow: 0px 0px 15px rgba(255, 255, 0, 0.8);
}
