* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    margin: 0;
	font-family: "Montserrat", sans-serif;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


h1 {
	color: #303c40;
	font-size: 2em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-shadow:  0px 0px 4px rgba(255, 255, 255, 1);
}
h1,h2 {
	color: #303c40;
	font-size: 2em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-shadow:  0px 0px 4px rgba(255, 255, 255, 1);
}
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #525c61;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.logo {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	text-align: center;
	color: #fff;
	font-size: 38px;
	margin: 7px;
	text-shadow:  1px 1px 4px rgba(0, 0, 0, 1);
}

.buttons {
    display: flex;
    gap: 10px;
}

.access-btn, .login-btn  {
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background-color: #ec0000;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.access-btn:hover {
    background-color: #ff5c5c;
}

.login-btn {
    background-color: transparent;
    transition: color 0.3s ease;
}

.login-btn:hover {
    color: #60ff00;
}

main {
    flex: 1;
	background-color: #a6bac4;
    text-align: center;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px;
	margin-top: 60px;
}

.image-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.image-row img {
    border-radius: 10px;
    transition: transform 0.3s ease;
	object-fit: cover;
	object-position: center 0;
}

.image-block p {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

.block-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


.block-text {
    margin-top: 10px;
    color: #555;
    transition: border-color 0.23s, color 0.23s;
    border-bottom: 2px solid #555;
    padding-bottom: 5px;
padding: 15px 0;
letter-spacing: 1px;
    font-size: 24px;
    font-weight: bold;
text-transform: uppercase;
letter-spacing: 3px;
}

.block-text:hover {
    border-bottom: 2px solid transparent; 
    color: #000;
}

.footer {
    margin-top: auto;
    background-color: #525c61;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}


.footer-button, .login-button{
    display: inline-block;
    background-color: #ec0000;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px; 
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}
.login-button {
	    background-color: #42ae00;
		padding: 8px 40px;
}
.footer-button:hover {
    background-color: #ff5c5c;
}
.login-button:hover {
	background-color: #6bc732;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}


.footer-link {
    color: #60ff00;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #98ff72;
}
.pay-text {
	color: #000;
	font-size: 26px;
	width: 100%;
	margin-top: 70px;
	height: auto;
}
.pay-text img{
margin: 10px auto;
display: block;
}
 .crypto-choice {
     display: inline-block;
     margin: 0 20px 20px;
     text-align: center;
 }
 .crypto-choice img {
     width: 64px;
     height: 64px;
     cursor: pointer;
 }
.navbar {
font-weight: 700;
display: flex;
justify-content: center;
align-items: center;
height: 56px;
}
.btn {
color: #a6bac4;
background: rgba(0, 0, 0, 0.5);
padding: 10px 20px;
font-size: 12px;
text-decoration: none;
letter-spacing: 2px;
text-transform: uppercase;
}

.btn:hover {
border: none;
background: rgba(0, 0, 0, 0.4);
background: #fff;
padding: 20px 20px;
color: #000;
}
form {
    display: inline-block;
}
input[type="password"] {
    padding: 8px;
    margin: 10px;
    font-size: 16px;
}
form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

input[type="text"], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#content strong {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}
@media (max-width: 1340px) {
    .image-row img {
        max-width: calc(50% - 20px);
		width: calc(25% - 20px);
    }
}
@media (max-width: 980px) {
	    .image-row img {
        max-width: calc(100% - 20px);
		width: calc(50% - 20px);
    }
.faq_txt {
	font-size: 16px;
}
.pay-text {
	font-size: 22px;
}
}

@media (max-width: 680px) {
    .sticky-header {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        padding: 0;
    }

    .logo {
        text-align: center;
        font-size: 32px;
        padding: 0;
        background-color: #525c61;
    }

    .buttons {
        display: flex;
        width: 100%;
        margin: 0;
		gap: 0;
    }

    .login-btn {
        flex: 1;
        background-color: #42ae00;
        color: white;
		text-align: center;
        padding: 15px 0;
		transition: background-color 0.3s ease;
        font-size: 16px;
		border-radius: 0;
    }

    .login-btn:hover {
        background-color: #6bc732;
		color: white;
    }

    .access-btn {
        flex: 1;
        padding: 15px 0;
		text-align: center;
        font-size: 16px;
		border-radius: 0;
    }

    .access-btn:hover {
        background-color: #ff5c5c;
    }
	h1{
		margin-top: 80px;
	}
	.pay-text {
	font-size: 20px;
}
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
		height: unset;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .btn:hover {
	padding: 10px 20px;
    }
}
@media (max-width: 510px) {
	.image-row img {
		max-width: 300px;
		width: calc(100% - 20px);
		height: auto;
    }
		.pay-text {
	font-size: 18px;
}
}