@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    margin: 0;
    height: 100vh;
    background: #161616;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #EEE;
    overflow-x: hidden;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #202020;
    padding: 10px 20px; /* Adjust top and bottom padding */
}

.nav-logo img {
    width: 120px;
    height: 60px;
    margin-right: 10px; /* Adjust right margin */
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    justify-content: flex-end; /* Align links to the right */
    flex-grow: 1; /* Allow links to take up available space */
}

.nav-links li a {
    color: #EEE;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #3254DD;
}

.main {
    display: flex;
    align-items: flex-start;
    margin: 75px 0 75px 0;
    width: 100%;
    justify-content: center;
}

.mediaborder {
    margin-right: 20px;
    border-color: #3254DD;
    border-style: solid;
}

.media {
    display: block;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 600px;
}

.title1 {
    margin: 0 0 50px 0;
    font-size: 3rem;
    letter-spacing: 0.1rem;
}

.status {
    font-size: 16px;
    margin: 0;
}

.span1 {
    opacity: 50%;
}

.span2 {
    color: #66ff00;
}

.description {
    font-size: 16px;
    line-height: 1.5;
    opacity: 50%;
    margin: 0 0 35px 0;
    overflow: wrap;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    max-width: 800px;
    padding: 20px;
    box-shadow: 0 0 10px #3254DD;
}

.grid-item {
    display: flex;
    align-items: center;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.key {
    font-weight: bold;
    margin: 0;
}

.value {
    margin: 0;
}

.button1 {
    appearance: none;
    border-radius: 15px;
    box-sizing: border-box;
    color: #EEE;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    min-height: 60px;
    min-width: 0;
    outline: none;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
    background-color: #3254DD;
    border: 2px solid #4262e0;
    display: inline-block;
    width: 100%;
    height: 50px;
    margin-top: 20px;
    max-width: 840px;
}

#payment-info {
    margin-top: 20px;
    padding: 20px;
    background-color: #161616;
    border-radius: 10px;
    color: #EEE;
    font-size: 16px;
    line-height: 1.5;
}

.email {
    color: #3254DD;
}

.disclaimer {
    margin-top: 10px;
    border-top: 1px solid #8d8d8d;
    padding-top: 10px;
    color: #EEE;
    opacity: 0.7;
    font-size: 14px;
}

.button1:disabled {
    pointer-events: none;
}

.button1:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.button1:active {
    box-shadow: none;
    transform: translateY(0);
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(22,22,22,0.6); /* Black w/ opacity */;
}

/* Modal Content/Box */
.modal-content {
    background-color: #161616;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    box-shadow: 0 0 20px #3254DD;
    width: 80%; /* Could be more or less, depending on screen size */
    text-align: center;
}

.modal-content h1{
    color: #fff;
    margin: auto;
}

.modal-content img {
    padding: 25px;
}

.modal-content button {
    background-color: #161616;
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

#ppbuttons {
    display: none;
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}

label {
    color: #3254DD;
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 20px;
}

input[type=radio]:checked + label {
    color: #98a9ee;
    background: #3254DD;
}

label + input[type=radio] + label {
    border-left: solid 3px #3254DD;
}

#radio-group {
    border: solid 3px #3254DD;
    display: none;
    margin: 10px 0 0 0;
    border-radius: 10px;
    overflow: hidden;
}

.feature-columns {
    display: flex;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
    padding: 48px 24px;
}

.feature-column {
    flex-basis: 23%;
    padding: 24px;
    text-align: left;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.feature-title {
    font-size: 28.8px;
    margin: 0px 0;
    display: flex;
    align-items: center;
}

.icon-wrapper {
    display: inline-flex;
    align-items: left;
    margin-right: 12px;
}

.feature-icon {
    width: 28.8px;
    height: 28.8px;
    margin-right: 10px;
}

.feature-description {
    font-size: 16.8px;
    color: #666;
    margin: 12px 0;
}

.feature-details {
    text-align: left;
    margin: 12px 0;
    padding-left: 0;
}

.feature-details li {
    list-style: none;
    font-size: 16.8px;
    margin-bottom: 6px;
    position: relative;
    padding-left: 36px;
}

.feature-arrow-icon {
    width: 19.2px;
    height: 19.2px;
    position: absolute;
    left: 0;
    top: 3.2px;
}

footer {
    padding: 24px;
    background-color: #202020;
    color: #8a8a8d;
    text-align: left;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    display: block;
    width: 100px;
    margin-bottom: 12px;
}

.footer-info {
    flex: 1;
    margin-left: 24px;
}

.footer-info p {
    margin: 0;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.5;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links h2 {
    color: #3254DD;
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-links a {
    color: #8a8a8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3254DD;
}

@media (max-width: 1525px) {
    .main {
        flex-direction: column;
        align-items: center;
    }

    .mediaborder {
        margin: 20px auto;
        width: 80%;
        height: fit-content;
    }

    .info {
        max-width: 100%;
        text-align: center;
    }

    .feature-columns {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-column {
        flex-basis: 100%;
        padding: 24px;
        text-align: center;
    }

    .media {
        width: 100%;
        height: 270px;
    }

    .description {
        max-width: 840px;
    }

    .feature-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-title {
        font-size: 28.8px;
        margin: 0px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-description {
        font-size: 16.8px;
        color: #666;
        margin: 12px 0;
        text-align: center;
    }

    .feature-details {
        text-align: center;
        margin: 12px 0;
        padding-left: 0;
    }

    .feature-arrow-icon {
        width: 0;
        height: 0;
        position: absolute;
        left: 0;
        top: 3.2px;
    }

    .feature-details li {
        list-style: none;
        font-size: 16.8px;
        margin-bottom: 6px;
        padding-left: 0;
    }
}
