
/* Generator Header + Box Unified Styling */
#generator-box {
    background: linear-gradient(180deg, #1e90ff, #1c1c28); /* Matches header fade */
    color: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 0;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

#generator-header {
    background: linear-gradient(180deg, #1e90ff, #3273a8); /* Smooth top-down blend */
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    padding: 14px 0;
    margin: 0;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom: none;
    box-shadow: none;
    position: relative;
    z-index: 2;
}






.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Adjust spacing below the logo */
}

.logo-container img {
    max-width: 210px; /* Control image size */
}


@media (max-width: 768px) {
    #generator-box {
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    #generator-box {
        width: 100%; 
        max-width: 350px; 
        height: auto; 
    }
}


/* img[alt="Fortnite Logo"] {
    margin-top: -150px;
    max-width: 150px;
} */

h2 {
    font-weight: 700;
    font-size: 1.8rem;
}

/* Button Styling */
.btn-modern {
    display: inline-block;
    background: linear-gradient(to right, #1e90ff, #4682b4); /* Blue gradient */
    color: white; /* White text */
    font-size: 1rem; 
    font-weight: bold; 
    text-transform: uppercase;
    padding: 8px 16px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
}

/* Button Hover Effect */
.btn-modern:hover {
    background: linear-gradient(to right, #4682b4, #1e90ff); /* Reverse gradient */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); 
    transform: scale(1.05); 
}

/* Active Button Effect */
.btn-modern:active {
    transform: scale(0.95); 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

/* Center Alignment */
#proceed-btn {
    margin: 0 auto; /* Center horizontally */
    display: block; /* Ensure it's a block for full-width alignment */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .btn-modern {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}






/* Platform Button */
.platform-btn {
    background: transparent;
    border: 2px solid #1e90ff; /* Blue border for contour */
    color: #ffffff; /* White text/icons */
    transition: 0.3s ease-in-out;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(30, 144, 255, 0.4); /* Subtle blue shadow for depth */
}

.platform-btn:hover {
    background: #1e90ff; /* Blue background on hover */
    color: #000; /* Black text/icons on hover */
    border-color: #ffffff; /* White border on hover */
    transform: scale(1.1); 
}

.platform-btn.selected {
    background-color: #4682b4; /* Active background */
    color: white;
    border-color: #4682b4;
    transition: background-color 0.3s ease, color 0.3s ease;
}




#proceed-btn, #generate-btn, #verify-btn {
    background: linear-gradient(to right, #1e3c72, #2a5298); /* Blue gradient */
    color: #ffffff; /* White text */
    font-weight: 600; /* Bold font */
    border: none; /* No border */
    border-radius: 6px; /* Optional: Add rounded corners */
    padding: 10px 20px; /* Optional: Add padding for better aesthetics */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: background 0.3s ease; /* Smooth hover transition */
}

#proceed-btn:hover, #generate-btn:hover, #verify-btn:hover {
    background: linear-gradient(to right, #2a5298, #1e3c72); /* Reverse gradient on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Slightly deeper shadow on hover */
}


.form-control {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 10px;
    transition: box-shadow 0.3s;
}

.form-control:focus {
    box-shadow: 0 0 10px #ff0000;
    border-color: #ff0000;
}

.progress-bar {
    background: linear-gradient(90deg, #1e90ff, #4682b4); /* Blue gradient */
    animation: progressBar 3s linear infinite;
}

@keyframes progressBar {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

#step7 .card {
    background: #212121;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

#step7 p {
    color: #ffcc29;
    font-size: 1.2rem;
}

.platform-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: 0.3s;
    padding: 10px;
    margin: 5px;
}



.text-warning {
    color: #17b35d;
}

.text-danger {
    color: #ff0000;
}

.platform-error, .username-error {
    font-size: 0.9rem;
    color: #ff6b6b;
    display: none;
}

.shake {
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-10px);
    }
    40%, 80% {
        transform: translateX(10px);
    }
}

.error-message {
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-top: 5px;
}

@keyframes zoomInOut {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.message-zoom {
    animation: zoomInOut 1s infinite ease-in-out;
}



/* Responsive Design */
@media (max-width: 768px) {
    #generator-box {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    img[alt="Fortnite Logo"] {
        margin-top: -140px;
        max-width: 300;
    }

    h2 {
        font-size: 1.5rem;
    }

    button {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .form-control {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.2rem;
    }

    .fa-lg {
        font-size: 1.2rem;
    }

    .platform-btn {
        padding: 8px;
        font-size: 0.9rem;
    }

    #generator-box {
        width: 100%;
        height: 400px;
    }

    .form-control {
        font-size: 0.8rem;
        padding: 8px;
    }

    #step7 .card {
        width: 90%;
    }
}
.gem-icon {
    width: 16px; /* Adjust size to fit the text */
    height: 16px;
    margin-left: 5px; /* Space between the gems number and the icon */
    vertical-align: middle; /* Align the gem image with the text */
}
/* Ensure the gem icon stays inline */
.gem-icon-inline {
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    vertical-align: middle; /* Align with the text */
    margin-left: 5px; /* Add some space between the text and the icon */
    display: inline-block; /* Ensure it stays inline */
}
/* Styling for the Recent Activity section */
#recent-activity {
    background-color: black; /* Black background */
    padding: 10px; /* Add some padding for spacing */
    border-radius: 10px; /* Rounded corners */
    color: white; /* White text for readability */
    margin: 20px auto; /* Center align the section and add spacing above */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
    width: 90%; /* Responsive width */
    max-width: 400px; /* Fixed maximum width */
    min-width: 300px; /* Fixed minimum width for smaller screens */
    text-align: center; /* Center align the content inside */
    
}

/* Title styling */
#recent-activity h5 {
    color: #ffc107; /* Yellow for the title */
    margin-bottom: 10px; /* Space below the title */
    text-align: center;
    font-weight: bold;
    font-size: 1rem; /* Smaller font size */
}

/* List styling */
#fake-users-list {
    list-style: none; /* Remove bullets */
    margin: 0;
    padding: 0;
}

/* Individual item styling */
#fake-users-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0; /* Space between items */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Divider between items */
    font-size: 0.3rem; /* Smaller font size for content */
}

/* Remove the last divider */
#fake-users-list li:last-child {
    border-bottom: none;
}

/* User details styling */
.fake-user-details {
    display: flex;
    align-items: center;
    gap: 3px; /* Reduced gap between elements */
    font-size: 0.6rem; /* Smaller font size */
}

.fake-user-details img {
    width: 16px; /* Smaller flag size */
    height: auto; /* Maintain aspect ratio */
    margin-right: 3px; /* Smaller margin */
}

.fake-time {
    margin-left: 5px; /* Reduced space before time */
    font-size: 0.75rem; /* Smaller font size for time */
}

.recent-activity-container {
    background-color: #000; /* Keep the black background */
    padding: 8px; /* Slightly smaller padding */
    border-radius: 8px; /* Slightly smaller border-radius */
    max-width: 350px; /* Restrict the width */
    margin: 0 auto; /* Center align */
    font-size: 0.8rem; /* Make the overall text smaller */
}

.recent-activity-container h4 {
    font-size: 1rem; /* Smaller title */
    margin-bottom: 8px; /* Less space below title */
    color: #ffc107; /* Keep the yellow color for title */
}

/* Modern 3D Input Field */
.modern-input {
    background: linear-gradient(145deg, #2a2a3c, #3c3c5b); /* Subtle blue-toned gradient for depth */
    border: 2px solid #1e90ff; /* Blue border matching Fortnite theme */
    color: #ffffff; /* White inserted text */
    font-size: 1.1rem; /* Balanced text size */
    font-weight: bold; /* Bold inserted text */
    border-radius: 15px; /* Smooth rounded corners */
    padding: 12px 15px; /* Spacing for comfortable text entry */
    width: 80%; /* Smaller width */
    max-width: 300px; /* Maximum width to limit size */
    margin: 0 auto; /* Center the input inside the container */
    outline: none; /* Remove default browser focus outline */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6), -4px -4px 8px rgba(255, 255, 255, 0.1); /* 3D shadow effect */
    transition: all 0.3s ease-in-out; /* Smooth hover and focus transitions */
}

/* Placeholder Styling */
.modern-input::placeholder {
    color: #d1d1d1; /* Subtle gray text for placeholder */
    font-weight: normal; /* Normal weight for placeholder */
    opacity: 1; /* Fully opaque for clarity */
}

/* Focus Effect */
.modern-input:focus {
    border-color: #4682b4; /* Highlight border in lighter blue */
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.8), -6px -6px 12px rgba(70, 130, 180, 0.4); /* Stronger shadow on focus */
    background: linear-gradient(145deg, #2a2a4c, #3d3d6b); /* Subtle brightened gradient on focus */
}

/* Hover Effect */
.modern-input:hover {
    border-color: #1e90ff; /* Bright blue border on hover */
    background: linear-gradient(145deg, #292940, #3b3b5a); /* Slightly different gradient for hover */
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7), -6px -6px 12px rgba(30, 144, 255, 0.3); /* Stronger shadow on hover */
}


.generator-step h2 {
    font-size: 1.5rem; 
    font-weight: bold; 
    text-align: center; 
    color: #1e90ff; /* Blue color for title */
}


/* Loading Dots */
.dots {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #4682b4; /* Blue color for dots */
    border-radius: 50%;
    margin: 0 3px;
    animation: bounce 1.5s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes dot-flash {
    0%, 80%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

.message-blink {
    animation: blink 0.5s infinite;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
.invisible {
    visibility: hidden;
}



