/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #fff;
    margin: 0;
}

/* Logo */
.logo {
    padding-top:0px;
    padding-bottom: 5px;
    background-repeat: no-repeat;
    background-position: center;
    padding-left: 220px;
}


h2 {
    margin-top: 0;
}

/* Generator Section */
.generator-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.title,
.subtitle {
    margin: 0;
    padding: 0;
}

.subtitle {
    font-size: 1.2rem;
    color: #d4d4d4;
    margin-bottom: 20px;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    background-color: #716868;
    border-radius: 25px;
    padding: 5px 7px 5px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-group-addon {
    margin-right: 10px;
    height: 24px;
}

.input-group-addon i,
.input-group-addon img {
    width: 24px;
    height: 24px;
}

.form-control {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px;
    border-radius: 25px;
}

.form-control:disabled {
    background: #f0f0f0;
    color: #333;
}

.text-danger {
    color: #ff4d4d;
    font-size: 0.9rem;
    display: none;
    /* Hide by default */
}


@keyframes flashy {
    0% {
        color: #4CAF50;
        text-shadow: 0 0 5px #4CAF50;
    }

    25% {
        color: #2196F3;
        text-shadow: 0 0 5px #2196F3;
    }

    50% {
        color: #FFC107;
        text-shadow: 0 0 5px #FFC107;
    }

    75% {
        color: #FF5722;
        text-shadow: 0 0 5px #FF5722;
    }

    100% {
        color: #4CAF50;
        text-shadow: 0 0 5px #4CAF50;
    }
}



.flashy-text {
    animation: flashy 4s linear infinite;
}

/* Button Styling */
.btn {
    background: linear-gradient(135deg, #ddff04, #f7ff01);
    color: #fff;
    border: 3px solid #388E3C;
    border-radius: 5px;
    padding: 12px 20px;
    position: relative;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    box-shadow: 0 4px 10px rgba(0, 255, 0, 0.5);
}

/* Progress Bar */
.progress-bar {
    background: #4CAF50;
    height: 20px;
    width: 0;
    border-radius: 4px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.with-ellipsis:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4, end) 900ms infinite;
    animation: ellipsis steps(4, end) 900ms infinite;
    content: "\2026";
    /* ascii code for the ellipsis character */
    margin-right: 1.25em;
    width: 0px;
}

.rr-font {
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
    font-family: 'Oswald', sans-serif;
}

.with-glint::after {
    animation: slide 5s ease-in-out infinite;
    background: url('7ESoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAS4%2bMrYO%2bFXxIAAAAASUVORK5CYII%3d.html') 50%/contain no-repeat;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    height: 100%;
    transform: translateX(-100%) translateZ(0);
    width: 100%
}

.greenbold {
    font-weight: 700;
    color: #388E3C;
}

@keyframes ellipsis {
    to {
        margin-right: 0;
        width: 1.25em;
    }
}

@-webkit-keyframes ellipsis {
    to {
        margin-right: 0;
        width: 1.25em;
    }
}

/* Status Section */
.status-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 26px;
}

/* Comments Section */
.comments-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Add Comment Form */
.add-comment-form input,
.add-comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 25px;
    border: none;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.add-comment-form button {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.add-comment-form button:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.5);
}

/* Notification */
.notification {
    background: #ff9800;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 20px;
}


/* Flex Container for Form, Status, and Info Box */
.flex-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* Space between the form, status, and info box */
    flex-wrap: wrap;
    /* Ensure responsiveness on smaller screens */
}

/* Make sure the flex children take appropriate width */
.generator-section,
.status-section,
.info-section {
    flex: 1;
    min-width: 300px;
    /* Ensure the sections don't get too small */
}

/* Ensure all sections have equal height */
.generator-section,
.status-section,
.info-section {
    flex: 1;
}

/* Status Section */
.status-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

/* Info Section */
.info-section .card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.info-section .card-title {
    margin-top: 0;
    font-size: 1.5rem;
    color: #ffdd57;
}

h1,
h2 {
    color: #dcd920 !important;
}

/* Adjust media query for responsiveness */
@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
    }
}

/* New Row Section */
.new-row {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    /* Add some space above this section */
    text-align: center;
}

.new-row .card-title {
    margin-top: 0;
    font-size: 1.5rem;
    color: #ffdd57;
}

.new-row .pool-desc {
    margin-top: 10px;
    font-size: 1rem;
}

/* New Row Section 2: About Section */
.card-about {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.card-about .card-title {
    font-size: 1.5rem;
    color: #ffdd57;
    text-align: center;
}

.card-about .advantages-icon {
    font-size: 3rem;
    color: #ffdd57;
    margin-bottom: 10px;
}

.card-about p {
    font-size: 1rem;
    color: #ffffff;
}

.card-about .row {
    display: flex;
}

/* Ensure spacing between columns */
.card-about .row>div {
    margin-bottom: 20px;
    flex: 1;
    text-align: center;
}

/* Make sure the container does not stretch beyond the content width */
.card-about.container {
    max-width: 900px;
    margin: 0 auto;
}


/* Flex Container for Reviews and About Section */
.about-reviews {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Reviews Column */
.reviews-column {
    flex: 1;
    min-width: 300px;
}

#comments {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#comments .card-title {
    font-size: 1.5rem;
    color: #ffdd57;
    margin-bottom: 20px;
}

.comment-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-header-summary {
    display: flex;
    flex-direction: column;
}

.comment-author {
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffdd57;
}

.comment-date {
    font-size: 0.9rem;
    color: #d4d4d4;
    margin-bottom: 5px;
}

.comment-votes {
    display: flex;
    align-items: center;
}

.vote-result {
    font-size: 1.2rem;
    color: #ffdd57;
    margin-right: 10px;
}

.vote-btn {
    background: transparent;
    border: none;
    color: #ffdd57;
    font-size: 1.2rem;
    cursor: pointer;
}

.comment-stars i {
    color: #ffdd57;
}

.comment-message {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 10px;
}

.comment-stars {
    margin-bottom: 10px;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .about-reviews {
        flex-direction: column;
    }
}

/* About Section */
.card-about {
    flex: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Ensure spacing between columns */
.card-about .row>div {
    margin-bottom: 20px;
}

/* Make sure the container does not stretch beyond the content width */
.card-about.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Adjust media query for responsiveness */
@media (max-width: 768px) {
    .about-reviews {
        flex-direction: column;
    }
}

#gen-start {
    max-width: 300px;

    animation: bounce 5s ease-in-out infinite;
}

#console-msg {
    margin-bottom: 20px;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateZ(0)
    }

    10% {
        opacity: 0;
        transform: translateX(-100%) translateZ(0)
    }

    20% {
        opacity: .85
    }

    30% {
        opacity: 0;
        transform: translateX(35%) translateZ(0)
    }

    to {
        opacity: 0;
        transform: translateX(35%) translateZ(0)
    }
}

@keyframes bounce {
    25% {
        transform: scale(1) translateZ(0)
    }

    35% {
        transform: scale(.92) translateZ(0)
    }

    40% {
        transform: scale(1.06) translateZ(0)
    }

    42.5% {
        transform: scale(.96) translateZ(0)
    }

    45% {
        transform: scale(1.02) translateZ(0)
    }

    46.5% {
        transform: scale(.98) translateZ(0)
    }

    48.5% {
        transform: scale(1) translateZ(0)
    }

    to {
        transform: none
    }
}

.main-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-top {
    background-image: url('1banner.jpg');
    background-size: cover;
    position: relative;
}

.fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, rgba(15, 52, 96, 0.5) 90%, rgba(15, 52, 96, 1) 100%);
    pointer-events: none;
    z-index: 10;
}

.logo {
    padding-top: 20px;
    padding-bottom: 5px;
    z-index: 1000;
    background-repeat: no-repeat;
    background-position: center;
}

.logo-img {}

/* Button Styling */
.btn {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: #fff;
    border: 3px solid #388E3C;
    border-radius: 5px;
    margin-top: 10px;
    padding: 12px 20px;
    position: relative;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    box-shadow: 0 4px 10px rgba(0, 255, 0, 0.5);
}
