@import url('https://fonts.googleapis.com/css2?family=Anton&family=Darker+Grotesque:wght@300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');        :root {
    --color-primary: #000;
    --color-secondary: #fff;
    --font-main: 'Courier New', Courier, monospace;
    --border-width: 3px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: crosshair;
}

body {
    font-family: "Darker Grotesque", sans-serif;
     color: var(--color-primary);
     min-height: 100vh;
     width: 100%;
     overflow-x: hidden;
     overflow-y: auto;
     background-color: #ffffff;
}

/* --- GLOBAL ELEMENTS --- */
.btn {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
font-family: inherit;
padding: 10px 20px;
font-size: 1.4rem;
font-weight: bold;
text-transform: uppercase;
border: var(--border-width) solid var(--color-primary);

/* Original shadow: 4px right, 4px down */
box-shadow: 4px 4px 0px var(--color-primary); 

background-color: #70bfff;
color: var(--color-secondary);

/* Ensure transform and box-shadow transitions are smooth */
transition: background-color 0.1s, color 0.1s, transform 0.1s, box-shadow 0.1s; 
cursor: pointer;
}
.btn white {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
font-family: inherit;
padding: 10px 20px;
font-size: 1.4rem;
font-weight: bold;
text-transform: uppercase;
border: var(--border-width) solid var(--color-primary);

/* Original shadow: 4px right, 4px down */
box-shadow: 4px 4px 0px var(--color-primary); 

background-color:var(--color-secondary) ;
color: #70bfff;

/* Ensure transform and box-shadow transitions are smooth */
transition: background-color 0.1s, color 0.1s, transform 0.1s, box-shadow 0.1s; 
cursor: pointer;
}
p {
font-size: 1.75rem;
font-weight: 600;
}
.btn:hover {
/* 1. Move the button down and right slightly */
/* Moving down 4px and right 4px will perfectly align the button 
with where the shadow originally was (the 'pressed' state). */
transform: translate(4px, 4px); 

/* 2. Shrink the shadow completely */
/* When the button moves to the position of the shadow, the shadow 
should disappear to look like the button is flush with the page. */
box-shadow: 0px 0px 0px var(--color-primary); 

/* 3. Keep colors the same (No change) */
/* background-color: #70bfff; */
/* color: var(--color-secondary); */
}
button.btn.white {
    background: white;
    color: black;
}
.header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-bottom: 4px solid black;
padding: 20px;
z-index: 100;
gap: 3rem;
height: 90vh;
background-image: url(bg.svg);
background-size: 40%;
background-color: #d9f8ff;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.scroll-to-pricing-btn {
    margin-top: 30px;
    font-size: 1.6rem;
    padding: 15px 40px;
}


/* New element for Questions link on the bottom left */
.faq-link {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
}

/* --- MAIN CONTAINER --- */
.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 100px; /* Space for fixed header */
}

.view {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #landing-view h1 {
        font-size: 32px;
        flex-direction: column;
    }
    
    .telegram-icon {
        width: 60px;
        height: 60px;
    }
    
    .plans-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-box {
        width: 100%;
        max-width: 400px;
    }
    
    .faq-container {
        padding: 0 10px;
    }
}

/* --- LANDING VIEW (Header Section) --- */
#landing-view {
    min-height: auto;
    padding: 80px 20px 60px;
}

#landing-view h1 {
    font-family: "Anton", sans-serif;
    font-size: 75px;
    margin-bottom: 40px;
    font-weight: 400;
    background: white;
    border: 3px solid black;
    box-shadow: 3px 4px 1px black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.telegram-icon {
    width: 100px;
    height: 100px;
}
.back-nav {
text-align: right;
display: flex;
width: 100%;
justify-content: flex-end;
align-items: flex-end;
height: -webkit-fill-available;
}
.card {
background: #ff6b35;
color: white;
padding: 2rem;
min-height: auto;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
max-width: 800px;
margin: 0 auto;
box-shadow: 4px 4px 0px black;
border: 3px solid black;
}

/* --- QUESTIONS VIEW (Information Section) --- */
#questions-view {
    min-height: auto;
    padding: 60px 20px;
    justify-content: flex-start;
    align-items: center;
}

#questions-view h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-decoration: underline;
    text-align: center;
}

.faq-container {
    max-width: 1000px;
    width: 100%;
}

.faq-item {
    margin-bottom: 25px;
    border: var(--border-width) solid var(--color-primary);
    padding-left: 15px;
    max-width: 100%;
    text-align: left;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 4px 4px 0px black;
}

/* Alternating colors for FAQ items */
.faq-item:nth-child(odd) {
    background: rgb(255 114 114);
}

.faq-item:nth-child(even) {
    background: rgb(255 245 122);
}

.faq-item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 2.5rem;
}

/* --- PLANS VIEW (Pricing Section) --- */
#plans-view {
    height: 70vh;
    min-height: auto;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.3);
}

#plans-view h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-decoration: underline;
}

.plans-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-box {
    width: 300px;
    max-width: 100%;
    border: var(--border-width) solid var(--color-primary);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 250px;
    background: white;
}

.plan-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.plan-box p {
    margin-bottom: 20px;
    font-style: italic;
}

/* --- CHECKOUT VIEW (Hidden by default, shown via modal or separate page) --- */
#checkout-view {
    display: none;
}

/* --- DASHBOARD VIEW (Hidden by default, shown when logged in) --- */
#dashboard-view {
    display: none;
}

@keyframes point-move {
0% {
transform: translateX(0); /* Start at original position */
}
50% {
transform: translateX(4px); /* Move 4 pixels to the right */
}
100% {
transform: translateX(0); /* Return to original position */
}
}

/* Apply the animation to the SVG element inside the wrapper */
.pointing-icon svg {
animation-name: point-move;
animation-duration: 1.5s;
animation-timing-function: 
ease-in-out;
animation-iteration-count: infinite;
width: 40px;
height: 40px;
}

/* --- MODAL STYLES --- */
.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 1000;
align-items: center;
justify-content: center;
}

.modal-overlay.active {
display: flex;
}

.modal {
background: var(--color-secondary);
border: var(--border-width) solid var(--color-primary);
box-shadow: 8px 8px 0px var(--color-primary);
padding: 40px;
max-width: 500px;
width: 90%;
position: relative;
font-family: inherit;
}

.modal-header {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
text-transform: uppercase;
text-align: center;
}

.modal-body {
margin-bottom: 30px;
}
.header-buttons {
display: flex;
gap: 2rem;
position: fixed;
top: 5px;
right: 15px;
}
.modal-input {
width: 100%;
padding: 15px;
font-size: 16px;
border: var(--border-width) solid var(--color-primary);
box-shadow: 2px 2px 0px var(--color-primary);
font-family: inherit;
margin-bottom: 15px;
}

.modal-input:focus {
outline: none;
box-shadow: 4px 4px 0px var(--color-primary);
transform: translate(-2px, -2px);
}

.modal-message {
padding: 15px;
margin-bottom: 15px;
border: var(--border-width) solid var(--color-primary);
background: rgba(112, 191, 255, 0.1);
}

.modal-error {
background: rgba(255, 107, 53, 0.1);
border-color: #ff6b35;
}

.modal-success {
background: rgba(112, 191, 255, 0.2);
border-color: #70bfff;
}

.modal-actions {
display: flex;
gap: 15px;
justify-content: center;
}

.modal-actions .btn {
min-width: 120px;
}

.modal-close {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
font-size: 32px;
cursor: pointer;
color: var(--color-primary);
line-height: 1;
padding: 5px 10px;
font-weight: bold;
}

.modal-close:hover {
color: #ff6b35;
}

.checkout-modal {
max-width: 600px;
width: 95%;
}

#payment-element {
min-height: 200px;
}

#checkoutSubmitBtn:disabled {
opacity: 0.6;
cursor: not-allowed;
}