/* General Styles with Dark Gaming Color Scheme */
body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #141e2e; /* Dark background color */
    -webkit-font-smoothing: antialiased;
    display: block;
    position: relative; /* Add relative positioning to allow overlay positioning */
}

/* Dark Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; /* Behind the content */
}

/* Reset Default Margin and Padding for All Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background-color: #2c3e50;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1; /* Place header above the dark overlay */
}

/* Стилі для комп'ютера (ширина екрану більше 600px) */
@media (min-width: 600px) {
    header {
            background-color: #2c3e50; /* Dark background color for the header */
        padding: 20px;
        text-align: center;
    }

    .header-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-menu h1 {
        color: #ecf0f1;
        font-size: 36px;
        margin: 0;
    }

    .header-menu div {
        display: flex;
        gap: 20px;
        align-items: center; /* Center items vertically */
    }

    .header-menu a {
        color: #ecf0f1; /* White text color for contrast */
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s ease;
    }

    .header-menu a:hover {
        color: #f39c12;
    }

    .header-menu i {
        color: #f39c12;
        font-size: 36px;
    }

    .header-menu .nav-links {
        flex-grow: 1; /* Make nav-links take up available space */
    }

    .header-menu .language-switch {
        display: flex;
        gap: 10px;
        margin-left: auto; /* Push language-switch to the right */
    }

    .header-menu .language-switch a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s ease;
    }

    .header-menu .language-switch a:hover {
        color: #f39c12;
    }
    
    .language-switch {
        background-color: initial;
        border: none;
        cursor: pointer;
        padding: 0;
    }
}

/* Styles for phones (screen width less than or equal to 600px) */
@media (max-width: 600px) {
    header {
        background-color: #2c3e50;
        padding: 10px;
        text-align: center;
    }

    .header-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-menu h1 {
        color: #ecf0f1;
        font-size: 24px;
        margin: 0;
        font-family: 'Press Start 2P', cursive; /* Add a pixelated game font */
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .burger-line {
        width: 30px;
        height: 3px;
        background-color: #ecf0f1;
        margin: 6px 0;
        transition: 0.3s;
        border-radius: 5px; /* Rounded corners for button effect */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #34495e; /* Dark background for the menu */
        position: absolute;
        top: 60px; /* Position the menu below the header */
        left: 0;
        z-index: 1; /* To make the menu overlay other content */
        border-bottom-right-radius: 10px; /* Rounded bottom right corner of the menu */
        border-bottom-left-radius: 10px; /* Rounded bottom left corner of the menu */
    }

    .header-menu.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .header-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .header-menu.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .header-menu.active .nav-links {
        display: flex;
    }

    .header-menu a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 18px;
        margin-bottom: 10px;
        transition: 0.3s;
        padding: 15px; /* Increased padding for better clickability */
        font-family: 'Press Start 2P', cursive; /* Add a pixelated game font */
    }

    .header-menu i {
        color: #f39c12;
        font-size: 36px;
    }

    .header-menu .language-switch-container {
        display: flex;
        gap: 10px;
        margin-top: 10px; /* Add some margin to separate from other links */
    }

    .header-menu .language-switch a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s ease;
        font-family: 'Press Start 2P', cursive; /* Add a pixelated game font */
    }

    .header-menu .language-switch a:hover {
        color: #f39c12;
    }
}

/* General styles for all screen sizes */
footer {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 146px;
    padding: 35px 30px 58px;
    transition: 0.3s;
}

.site-info {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    flex-direction: column;
}

.site-info p {
    margin: 10px;
    color: #fff;
    font-size: 16px;
}

.footer-links {
    margin-top: 15px;
    display: flex;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #0f0;
    transform: scale(1.1);
}

/* Responsive styles for smaller screens (mobile devices) */
@media screen and (max-width: 600px) {
    .site-info {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

    .footer-links a {
        margin: 5px;
        font-size: 16px;
    }
}
.main,
.full_stack {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    margin-bottom: 330px;
}

/* Move the margin-bottom property to the bottom of the page */
.full_stack {
    margin-bottom: 330px;
    
}



.coin-info {
    background-color: #fff;
    border-radius: 20px;
    color: #06f;
    font-size: 23px;
    line-height: 28px;
    padding: 18px 56px 19px;
    text-align: center;
    transition: 0.3s;
    width: max-content;
    margin: 59px auto 0;
    
}

.coin-container {
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 50px auto 20px;
    padding: 20px;
    text-align: center;
}

#paymentStep {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.payment-option.selected {
    background-color: #ff4d00;
}

.payment-option:hover {
    background-color: #06a58b;
}

.payment-option img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.payment-option h3 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Styling for form elements */
select,
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #03d6dd;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 16px;
}

/* Styling for buttons in .coin-container */
.coin-container button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.coin-container button:hover {
    background-color: #021930;
}

/* Styling for the hidden #userDetailsStep */
#userDetailsStep {
    display: none;
}

/* Default styles for larger screens */
.price-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
}

.price {
    background-color: #fff;
    width: 600px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #3498db;
}

.price-icon {
    color: #000;
    font-size: 20px;
}

.icon {
    display: block;
    font-size: 24px;
    margin-top: 10px;
    color: #001be3;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.price p {
    margin-left: 0;
    text-align: center;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
    .price {
        width: 100%;
    }
}

/* Base styles for larger screens */
.support-title {
    background-color: #000000;
    border-radius: 20px;
    color: #fff;
    font-size: 32px; /* Increased font size for larger screens */
    line-height: 40px; /* Adjusted line height for better spacing */
    padding: 25px; /* Increased padding for better visual appeal */
    text-align: center;
    transition: background-color 0.3s;
    margin: 20px auto 0;
    width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #3498db;
}

.support-title h2 {
    margin: 0;
    font-size: 24px; /* Increased font size for larger screens */
}

.support-admin {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
}

.contact-button,
.bot-button {
    background-color: #1a1a1a;
    color: #fff;
    border: 2px solid #03d6dd;
    padding: 20px; /* Increased padding for better button size */
    border-radius: 12px; /* Slightly increased border radius for a softer look */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    font-size: 20px; /* Increased font size for larger screens */
    font-weight: bold;
    width: 300px;
    text-decoration: none;
}

.contact-button:hover,
.bot-button:hover {
    background-color: #03d6dd;
    color: #1a1a1a;
    transform: scale(1.1); /* Increased scale for a more noticeable hover effect */
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .support-title {
        width: 100%; /* Full width on smaller screens */
        font-size: 24px;
        padding: 15px;
    }

    .support-title h2 {
        font-size: 20px;
    }

    .support-admin {
        flex-direction: column;
        align-items: center;
    }

    .contact-button,
    .bot-button {
        margin-bottom: 10px;
        padding: 15px; /* Adjusted padding for smaller screens */
        border-radius: 10px; /* Adjusted border radius for smaller screens */
        font-size: 18px;
        width: 280px;
        transform: none; /* Removed transform on smaller screens */
    }
}

/* Styling for the cat image */
.cat-mono img {
    position: absolute;
    left: 85%;
    top: 4%;
    transform: translate(-50%, 80%) rotate(20deg);
    object-fit: cover;
    width: 250px;
    height: 210px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgb(72, 0, 241);
    transition: transform 0.3s ease-in-out;
}

/* Media query for responsive design */
@media (max-width: 1268px) {
    .cat-mono img {
        left: 82%;
        top: 1%;
        box-shadow: none;
        width: 30%;
        height: auto;
        border-radius: 10px;
    }
}



/* Styling for the text in payment options */
.text-tax-buy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.text-tax-buy h3 {
    margin: 0;
    font-size: 18px; /* Adjust the size as needed */
}

.text-tax-buy p {
    margin: 5px 0;
    text-align: left;
    font-size: 14px; /* Adjust the size as needed */
}

/* Styling for the buttons */
button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

button:hover {
    background-color: #45a049;
}
