* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0A0E17;
    color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0 20px 20px;
    gap: 10px;
}

.logo-icon {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.menu-item.active {
    background-color: #1F2937;
    border-radius: 6px;
    margin: 0 10px;
    padding: 12px 10px;
}

.menu-item:not(.active):hover {
    background-color: rgba(31, 41, 55, 0.5);
}



.support {
    margin-top: auto;
    padding: 20px;
    font-size: 12px;
    color: #94A3B8;
}

.support a {
    color: #94A3B8;
    display: block;
    margin-top: 5px;
    text-decoration: none;
}

.support a:hover {
    color: #fff;
}

.header-marketing {
    background: linear-gradient(270deg, #191970, #1e1e8f, #2a2aa8, #3d3dbf, #4f4fd6);
    background-size: 800% 800%;
    animation: gradientAnimation 8s ease infinite;
    max-width: 1920px;
    width: 100%;
    height: 30px;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.header-marketing-content {
    text-align: center;
    padding-top: 5px;
}

/* Main content styles */

.main-content {
    margin: 0 auto;
    padding: 20px;
    max-width: 100%;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 10px 50px;
    align-items: center;
    height: 70px;
}

.top-bar ul li {
    text-decoration: none;
    list-style-type: none;
}

.top-bar ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.top-bar ul li:hover {
    transition: ease-in-out 0.5s;
    transform: scale(1.04);
}

.top-bar ul li a:hover {

    transform: scale(1.04);
}

.btn-wrapper {
    display: flex;
    gap: 10px;
}

.connect-btn {
    background-color: #191970;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
    box-shadow:
        inset 0 0 0 var(--border-line-width, 1.5px) #191970,
        5px 5px 52px #191970;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.connect-btn:hover {
    background-color: #0e0e52;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 38px;
}



.content-area {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.left-column {
    flex: 1;
    max-width: max-content;
    flex-direction: row;
    display: flex;
    gap: 15px;

}

.right-column {
    flex: 1;
    max-width: 400px;
}

.card {
    background-color: #1E293B;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #334155;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    background-color: #0D1117;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    color: white;
    font-size: 14px;
}

.form-control.uppercase {
    text-transform: uppercase;
}

.form-control::placeholder {
    text-transform: none;
}

.form-control:focus {
    outline: 1px solid #334155;
}

.image-upload {
    background-color: #0D1117;
    border-radius: 5px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    border: 1px dotted white;
}

.image-upload span {
    font-size: 24px;
    color: #334155;
}

.image-upload .download-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: #1E293B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.checkbox-item .circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.checkbox-item .active {
    box-shadow: inset 0 0 0 var(--border-line-width, 1.5px) #191970, 5px 5px 52px #191970;
    background: linear-gradient(to bottom, #191970 0%, #3A3A90 100%);

}

.checkbox-item .inactive {
    box-shadow: inset 0 0 0 var(--border-line-width, 1.5px) #191970, 5px 5px 52px #191970;
    background: linear-gradient(to bottom, #191970 0%, #3A3A90 100%);
}

.checkbox-item .text {
    display: flex;
    flex-direction: column;
}

.checkbox-item .cost {
    font-size: 10px;
    color: #94A3B8;
}

.show-more {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 10px;
    cursor: pointer;
}

.btn {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.2s;
}

.count {
    font-size: 15px;
    border-radius: 50%;
    text-align: center;
    /* background-color: #302f2f;    */
    padding: 7px 15px 10px 15px;
    font-weight: 900;
    margin-left: 5px;
}

.step {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: linear-gradient(to bottom, #191970 0%, #3A3A90 100%);
    padding: 4.15px 0px;
    border-radius: 5px;
    border: 1px solid white;
    box-shadow: inset 0 0 0 var(--border-line-width, 1.5px) #191970, 5px 5px 52px #191970;
    margin-top: 10px;
}


.content-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    padding: 0px 15px;
}

.content {
    font-size: 12px;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: #FF6B6B;
    color: white;
}

.btn-secondary {
    background-color: #191970;
    color: white;
    box-shadow: inset 0 0 0 var(--border-line-width, 1.5px) #191970, 5px 5px 52px #191970;
    border: 1px solid;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step {
    list-style: none;
}

.step li {
    margin-bottom: 10px;
    color: #94A3B8;
    font-size: 14px;
}

.info-text {
    color: #94A3B8;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.authority-section {
    margin-top: 25px;
}

.authority-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
}


.about-section {
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.disclaimer {
    color: #94A3B8;
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

.my-tokens-btn {
    color: #fff;
    text-decoration: none;
}

.solana-logo {
    max-width: 500px;
    max-height: 350px;
    margin-top: -43px;
    width: 100%;
    height: auto;
}

.solana-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:980px) {
    .left-column {
        flex-direction: column;
    }

    .content-area {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-direction: column;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }

    .top-bar {
        padding: 10px 20px;

    }
}

.card {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    margin-top: 11px;
    overflow: hidden;
    border: 5px solid transparent;
    background-image: linear-gradient(#000, #1E293B), linear-gradient(90deg, transparent, #191970, transparent);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: borderSpin 1s linear infinite;
}

/* Dönme animasyonu */
@keyframes borderSpin {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media(max-width:500px) {
    .top-bar {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .solypto-text {
        font-size: 25px;
        text-decoration: none !important;
    }

    .fa-bars {
        position: absolute;
        left: 374%;
        top: -238%;
    }

    .fa-times {
        position: absolute;
        top: -15px;
        left: 69px;
        font-size: 15px;
        display: none;
    }

    ul.menu.show {
        display: flex;
        width: max-content;
        background-color: #191970;
        max-width: 1920px;
        border-radius: 5px;
        border: 1px solid;
        top: -37%;
        left: -151%;
        z-index: 9999;
    }

    .solana-logo-wrapper {
        margin-top: 142px;
    }

    #myModal {
        margin-top: 30px;
    }

    .solana-logo {
        margin-top: -114px;
    }


}



.image-download {
    width: 100%;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    z-index: 999999999;
    opacity: 0;
    height: 100%;
    cursor: pointer;
}

.image-upload-wrapper span b {
    color: #fff;
    font-weight: 100;
    cursor: pointer;
}

input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #191970;
    border-radius: 50%;
    background-color: #eee;
    border: 2px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.main-content .dimned {
    opacity: 0.5;
    transition: opacity 1s ease;
}

#imagePreview {
    width: 120px;
    height: 75px;
    object-fit: contain;
}

.totalprice {
    text-align: center;
    font-weight: 900;
    text-shadow: 1px 4px black;
}

a {
    text-decoration: none;
}

a.privacy-policy:visited {
    color: #0000EE;
}

a.how-affiliate-works,
a.how-affiliate-works:visited {
    color: #fff;
}

.loop-video {
    text-align: center;
    width: 100%;
    max-width: 1920px;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: absolute;
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    max-width: 1920px;
    top: 0%;
    left: 0%;
    right: 0%;
    margin: 0 auto;
    transition: ease-in-out 0.5s;
    z-index: 9999999999999999999999999;
}

/* Modal Content */
.modal-content {
    margin: auto;
    width: 80%;
    background-color: white;

    position: relative;
    transition: ease-in-out 0.5s;
}

/* The Close Button */
.close {
    color: #fff;
    float: right;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    top: -5%;
    background: #000;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    right: 1%;
    z-index: 99999999;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transform: scale(1.04);
}

.navbar {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.close-icon {
    display: none;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 2;
}

ul.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

ul.menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

ul.menu li i {
    margin-right: 8px;
}

@media screen and (max-width: 980px) {
    .menu-icon {
        display: block;
    }

    h1 {
        font-size: 20px;
    }

    ul.menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 0;
    }

    ul.menu.show {
        display: flex;
        width: max-content;
        background-color: #191970;
        max-width: 1920px;
        border-radius: 5px;
        border: 1px solid;
    }

    .close-icon.show {
        display: block;
    }

    ul.menu li {
        padding: 10px 20px;
    }

    footer .social,
    .secure-token-section,
    .wallet-options {
        border-bottom: 3px dotted #191970;
        margin: 15px 0px;
        padding: 20px 0px;

    }

}

.profile-wrapper {
    position: relative;
    display: inline-block;
}

.connect-btn.my-tokens-btn {
    background-color: #191970;
    color: #fff;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow {
    transition: transform 0.3s ease;
}

.arrow.down {
    transform: rotate(90deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 94%;
    left: -3px;
    background-color: #191970;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 7px;
    overflow: hidden;
    min-width: 85px;
    z-index: 1000;
    width: 155px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu li a i {
    margin-right: 10px;
    color: #fff;
}

.dropdown-menu li a:hover {
    transform: scale(1.05);
}

.fa-info-circle {
    margin-right: 9px;
}

.fa-user-friends {
    margin-right: 9px;
}

@media(max-width:340px) {
    .connect-btn.my-tokens-btn {
        padding: 10px 10px;
    }
}

.subtitle,
.subtitle-2,
.subtitle-3,
.subtitle-4 {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #191970;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    gap: 15px;
    margin-bottom: 15px;
}

.subtitle-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.05em;
    padding: 10px;
    border-radius: 4px;
}

.subtitle-toggle i {
    transition: transform 0.3s ease;
}

.subtitle-toggle.open i {
    transform: rotate(90deg);
}

.subtitle-hidden {
    display: none;
    margin-left: 10px;
    margin-top: 5px;
    font-size: 0.95em;
}

.subtitle-hidden.show {
    display: block;
}

.privacy {
    color: #3d3db9;
}

@media(max-width:612px) {
    .top-bar {
        display: flex;
        flex-direction: column;
        gap: 36px;
    }
}

@media(max-width:590px) {
    .solypto-text {
        display: none;
    }
}

@media(max-width:500px) {
    .solana-logo {
        margin-top: -189px;
    }
    h1 {
        text-align: center;
        margin: 15px 0px;
        font-size: 17px;
    }

}

input.force-enabled[disabled] {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    cursor: not-allowed;
}

.cost span {
    text-decoration: line-through;
    margin-right: 5px;
}

p .cost span {
    text-decoration-color: #fff;
}

.total-price-discount {
    text-decoration: line-through;
    margin-right: 5px;
}



@media(max-width:475px) {
    .connect-btn {
        padding: 9px 5px;
        font-size: 3vw;
    }

    .header-marketing-content {
        font-size: 13px;
    }
}