* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to bottom, #e6faff, #f7e6f7);
    color: #000;
    min-height: 100vh;
    margin: 0;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 5px 0;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: transparent;
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: 5px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ccc;
}

.nav-links li a.active {
    color: #00f;
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 5px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 5px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-bar i {
    color: #b0b0b0;
    font-size: 14px;
    margin-right: 5px;
}

.search-bar input {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    outline: none;
    width: 100px;
}

.bell-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.bell-icon img {
    width: 20px;
    height: 20px;
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
}

.airdrop-btn {
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.airdrop-btn:hover {
    background: #f0f0f0;
}

.nav-icon {
    width: 24px;
    height: 24px;
}

.language-icon-wrapper {
    display: flex;
    align-items: center;
}

.hamburger {
    font-size: 20px;
    color: #000;
    cursor: pointer;
    display: none;
    padding: 5px;
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 40px;
    padding: 0;
}

.left-section {
    flex: 2;
    max-width: 600px;
}

.left-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
    color: #000;
}

.middle-section,
.right-section {
    flex: 1;
    max-width: 300px;
    text-align: left;
}

.middle-section .icon,
.right-section .icon {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.middle-section .icon i,
.right-section .icon i {
    color: #000;
}

.middle-section h2,
.right-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    text-align: left;
}

.middle-section p,
.right-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #000;
    text-align: left;
}

/* NFT Section */
.nft-section {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 15px;
    padding: 0 0 60px;
}

.nft-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.nft-card:hover {
    transform: translateY(-5px);
}

.nft-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: center;
}

.nft-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nft-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nft-collection {
    display: flex;
    align-items: center;
}

.collection-label {
    font-size: 12px;
    font-weight: 400;
    color: #555;
}

.nft-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.nft-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.price-label {
    font-size: 12px;
    font-weight: 400;
    color: #555;
}

.price-value {
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-value span {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* Rankings */
.nft-rankings {
    flex: 1;
    max-width: 300px;
}

.nft-rankings h3 {
    font-size: 16px;
    font-weight: 700;
}

.nft-rankings p {
    font-size: 12px;
    font-weight: 400;
    color: #555;
    margin: 5px 0 15px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rank {
    font-size: 14px;
    font-weight: 700;
}

.rank-icon {
    font-size: 24px;
}

.cool-ape-icon {
    width: 14px;
    height: 14px;
}

.rank-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.rank-value {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tether-icon-rank {
    width: 14px;
    height: 14px;
}

.rank-change {
    font-size: 12px;
    font-weight: 500;
}

.rank-change.positive {
    color: #00f;
}

.more-btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.more-btn:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}

/* Form Overlay */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 1000;
    padding: 20px 0;
}

/* Form Container */
.form-container {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-container.full-page {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
}

.form-header {
    background: linear-gradient(to bottom, #d6f0ff, #f0d6f0);
    padding: 20px;
    text-align: center;
    position: relative;
}

.form-logo img {
    width: 150px;
}

.form-content {
    background: #fff;
    padding: 30px;
    text-align: center;
}

.form-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: 0.5px;
}

/* Scrollable Form Content */
.form-scrollable {
    max-height: 70vh;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 8px;
}

.form-group label .required {
    color: #ff0000;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    outline: none;
    background: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 8px rgba(30, 144, 255, 0.2);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="%23000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-size: 12px;
    background-color: #f8f9fa;
}

/* Address Box Styling */
.address-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.deposit-address {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    flex: 1;
    word-break: break-all;
    margin: 0;
}

.copy-btn {
    background: linear-gradient(to right, #1e90ff, #ff69b4);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Buttons */
.form-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.next-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right, #1e90ff, #ff69b4);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

.next-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Pulse Animation for Confirm Button */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(30, 144, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 144, 255, 0);
    }
}

/* Pop-Up Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Pop-Up Container */
.popup-container {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Slide-In Animation for Pop-Ups */
.slide-in {
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Loading Dots Animation */
.loading-dots span {
    opacity: 0;
    animation: dots 1.5s infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dots {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.popup-header {
    background: linear-gradient(to bottom, #d6f0ff, #f0d6f0);
    padding: 20px;
    text-align: center;
    position: relative;
}

.popup-logo img {
    width: 150px;
}

.popup-content {
    background: #fff;
    padding: 30px;
    text-align: center;
}

.popup-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    letter-spacing: 0.5px;
}

.popup-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Close Button for Deposit Failed Pop-Up */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to right, #1e90ff, #ff69b4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close-btn i {
    font-size: 16px;
}

/* Deposit Button */
.deposit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right, #1e90ff, #ff69b4);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.deposit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5px;
    gap: 20px;
}

.footer-logo {
    background: linear-gradient(to bottom, #d6f0ff, #f0d6f0);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-social h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1e90ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
}

/* Responsive Design */

/* Mobile Devices (below 768px) */
@media (max-width: 767px) {
    .navbar {
        flex-wrap: wrap;
        padding: 10px 5px;
    }

    .logo img {
        height: 30px;
    }

    .nav-links {
        display: none;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px;
    }

    .nav-links.active li a {
        color: #000;
        font-size: 12px;
    }

    .nav-right {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
        margin-right: 0;
    }

    .nav-icons {
        justify-content: flex-end;
        gap: 6px; /* Reduced gap for mobile */
        align-items: center;
    }

    .search-bar {
        padding: 4px 8px;
        width: 80px; /* Reduced width for mobile */
    }

    .search-bar i {
        font-size: 10px; /* Reduced size */
    }

    .search-bar input {
        font-size: 10px; /* Reduced font size */
        width: 50px; /* Reduced width */
    }

    .bell-icon img {
        width: 14px; /* Reduced size */
        height: 14px;
    }

    .notification-dot {
        width: 6px;
        height: 6px;
        top: -1px;
        right: -1px;
    }

    .airdrop-btn {
        font-size: 10px; /* Reduced font size */
        padding: 4px 8px; /* Reduced padding */
    }

    .nav-icon {
        width: 16px; /* Reduced size */
        height: 16px;
    }

    .language-icon-wrapper {
        display: flex;
        align-items: center;
    }

    .hamburger {
        display: flex;
        align-items: center;
        font-size: 16px; /* Reduced size for mobile */
        padding: 5px 5px 5px 10px; /* Adjusted padding to separate from language icon */
    }

    .main-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5px;
        gap: 30px;
        margin-top: 40px;
    }

    .left-section, .middle-section, .right-section {
        max-width: 100%;
        text-align: left;
    }

    .left-section h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .middle-section .icon,
    .right-section .icon {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .middle-section h2,
    .right-section h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .middle-section p,
    .right-section p {
        font-size: 12px;
        line-height: 1.6;
    }

    .middle-section, .right-section {
        margin-top: 20px;
    }

    .nft-section {
        flex-direction: column;
        align-items: center;
        padding: 0 5px 40px;
        gap: 10px;
        margin-top: 30px;
    }

    .nft-card {
        width: 100%;
        max-width: 300px;
    }

    .nft-card img {
        height: 120px;
    }

    .nft-info {
        padding: 10px;
    }

    .nft-info h3 {
        font-size: 14px;
    }

    .collection-label {
        font-size: 10px;
    }

    .price-label {
        font-size: 10px;
    }

    .price-value span {
        font-size: 12px;
    }

    .nft-rankings {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .nft-rankings h3 {
        font-size: 14px;
    }

    .nft-rankings p {
        font-size: 10px;
    }

    .ranking-item {
        gap: 8px;
    }

    .rank {
        font-size: 12px;
    }

    .cool-ape-icon {
        width: 12px;
        height: 12px;
    }

    .rank-name {
        font-size: 12px;
    }

    .rank-value {
        font-size: 12px;
    }

    .tether-icon-rank {
        width: 12px;
        height: 12px;
    }

    .rank-change {
        font-size: 10px;
    }

    .more-btn {
        font-size: 12px;
        padding: 8px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 0 10px;
    }

    .footer-logo {
        padding: 15px;
    }

    .footer-logo img {
        height: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Form and Pop-Up Styles for Mobile */
    .form-overlay {
        align-items: center;
        padding: 0;
        overflow-y: hidden;
    }

    .form-container,
    .popup-container {
        max-width: 90%;
    }

    .form-container.full-page {
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .form-header,
    .popup-header {
        padding: 15px;
    }

    .form-logo img,
    .popup-logo img {
        width: 120px;
    }

    .form-content,
    .popup-content {
        padding: 20px;
    }

    .form-content h2,
    .popup-content h2 {
        font-size: 22px;
    }

    .form-scrollable {
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .form-scrollable::-webkit-scrollbar {
        display: none;
    }

    .form-group label {
        font-size: 12px;
        font-weight: 600;
    }

    .form-group input,
    .form-group select {
        font-size: 12px;
        padding: 10px;
    }

    .address-box {
        padding: 10px;
    }

    .deposit-address {
        font-size: 12px;
    }

    .copy-btn {
        font-size: 12px;
        padding: 6px 10px;
    }

    .next-btn,
    .deposit-btn {
        font-size: 12px;
        padding: 10px 20px;
    }

    .popup-content p {
        font-size: 12px;
    }

    .close-btn {
        width: 25px;
        height: 25px;
    }

    .close-btn i {
        font-size: 14px;
    }
}

/* Tablet Devices (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar {
        padding: 12px 10px;
    }

    .logo img {
        height: 35px;
    }

    .nav-links li a {
        font-size: 13px;
    }

    .search-bar input {
        width: 90px;
        font-size: 13px;
    }

    .airdrop-btn {
        font-size: 13px;
        padding: 7px 14px;
    }

    .nav-icon {
        width: 22px;
        height: 22px;
    }

    .main-content {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 50px;
    }

    .left-section {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .left-section h1 {
        font-size: 32px;
    }

    .middle-section,
    .right-section {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .middle-section h2,
    .right-section h2 {
        font-size: 18px;
    }

    .middle-section p,
    .right-section p {
        font-size: 13px;
    }

    .nft-section {
        flex-wrap: wrap;
        gap: 12px;
        padding: 0 10px 50px;
    }

    .nft-card {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .nft-card img {
        height: 120px;
    }

    .nft-info h3 {
        font-size: 15px;
    }

    .collection-label {
        font-size: 11px;
    }

    .price-label {
        font-size: 11px;
    }

    .price-value span {
        font-size: 13px;
    }

    .nft-rankings {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .ranking-item {
        justify-content: center;
    }

    .cool-ape-icon {
        width: 13px;
        height: 13px;
    }

    .rank-value {
        font-size: 13px;
    }

    .tether-icon-rank {
        width: 13px;
        height: 13px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-logo {
        padding: 15px;
    }

    .footer-logo img {
        height: 35px;
    }

    .footer-links {
        gap: 30px;
    }

    /* Form and Pop-Up Styles for Tablet */
    .form-overlay {
        overflow-y: auto;
    }

    .form-container,
    .popup-container {
        max-width: 450px;
    }

    .form-container.full-page {
        max-width: 500px;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .form-header,
    .popup-header {
        padding: 15px;
    }

    .form-logo img,
    .popup-logo img {
        width: 130px;
    }

    .form-content,
    .popup-content {
        padding: 25px;
    }

    .form-content h2,
    .popup-content h2 {
        font-size: 24px;
    }

    .form-scrollable {
        max-height: 65vh;
    }

    .form-group label {
        font-size: 13px;
        font-weight: 600;
    }

    .form-group input,
    .form-group select {
        font-size: 13px;
    }

    .deposit-address {
        font-size: 13px;
    }

    .copy-btn {
        font-size: 13px;
    }

    .next-btn,
    .deposit-btn {
        font-size: 13px;
    }

    .popup-content p {
        font-size: 13px;
    }
}

/* Desktop Devices (above 1024px) */
@media (min-width: 1025px) {
    .hamburger {
        display: none;
    }

    .form-overlay {
        overflow-y: auto;
    }

    .form-container {
        max-width: 500px;
    }

    .form-scrollable {
        max-height: 70vh;
    }
}