/* styles.css */
@font-face {
    font-family: 'Argent';
    src: url('Argentcf-regular.otf') format('truetype');
}

body{
    font-family: "Protest Revolution", sans-serif;
}
body {
    font-family: "Argent";
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

.fjalla-one-regular {
    font-family: "Fjalla One", serif;
    font-weight: 400;
    font-style: normal;
  }  

.navbar {
    background-color: black;
    padding: 1rem 0;
    position: relative;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-menu a.active {
    color: red;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: black;
    color: black;
    margin: 2px 0;
    transition: 0.4s;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
}

.book-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-mockup img {
    max-width: 65%;
    height: auto;
}

.hero-text {
    flex: 1;
    padding: 2rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 3rem;
    margin-top: 0;
    color: red;
}

h2 span {
    color: black;
}

p {
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
}

input, button {
    margin-bottom: 1rem;
    padding: 0.5rem;
}

button {
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
}

#close-popup {
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hero-content {
        flex-direction: column;
    }

    .book-mockup, .hero-text {
        flex: none;
        width: 100%;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

.crypto-description {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.crypto-description__container {
    max-width: 800px;
    margin: 0 auto;
}

.crypto-description__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #fff;
}

.crypto-description__highlight {
    color: #ff0000;
}

.crypto-description__text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.crypto-description__text strong {
    font-weight: 700;
    
}

@media (max-width: 768px) {
    .crypto-description {
        padding: 3rem 1rem;
    }

    .crypto-description__title {
        font-size: 2rem;
    }

    .crypto-description__text {
        font-size: 1rem;
    }
}
.key-outline {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
}

.key-outline__title {
    text-align: center;
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.key-outline__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.key-outline__item {
    padding: 1.5rem;
    position: relative;
}

.key-outline__item:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background-color: #000;
}

.key-outline__item:nth-child(-n+3)::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.key-outline__item-number {
    font-size: 3rem;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.key-outline__item-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.5rem;
}

.key-outline__item-text {
    color: #000;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .key-outline__grid {
        grid-template-columns: 1fr;
    }

    .key-outline__item::after,
    .key-outline__item::before {
        display: none;
    }

    .key-outline__item {
        border-bottom: 2px solid #000;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .key-outline__item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}

.cm-section {
    
    background-color: #ff0000;
    color: white;
    padding: 40px 20px;
    overflow: hidden;
}

.cm-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #000;
}

.cm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cm-container::-webkit-scrollbar {
    display: none;
}

.cm-item {
    background-color: black;
    padding: 30px;
    border-radius: 10px;
    flex: 0 0 calc(15% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

/* .cm-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
} */

.cm-item-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: red;
}

.cm-item-description {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cm-container {
        scroll-padding: 0 20%;
    }

    .cm-item {
        flex: 0 0 80%;
    }
}
.hur-section {
    
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}

.hur-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hur-title {
    font-size: 2.5rem;
    color: #ff3333;
    margin-bottom: 20px;
}

.hur-subtitle {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
}

.hur-reviews {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hur-review {
    background-color: black;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    max-width: 400px;
}

.hur-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hur-text {
    font-style: italic;
    color: white;
    margin-bottom: 10px;
}

.hur-author {
    font-weight: bold;
    color: white;
}

.hur-cta {
    font-size: 1.8rem;
    color: #ff3333;
    font-weight: bold;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hur-title {
        font-size: 2rem;
    }

    .hur-subtitle {
        font-size: 1.2rem;
    }

    .hur-cta {
        font-size: 1.5rem;
    }
}
.csa-poster {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    line-height: 1.6;
}

.csa-container {
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid #ff3333;
    border-radius: 15px;
    padding: 30px;
    background: linear-gradient(145deg, #1a1a1a, #000);
}

.csa-header {
    font-size: 2.5rem;
    color: #ff3333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.csa-subheader {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 30px;
}

.csa-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.csa-section {
    margin-bottom: 30px;
}

.csa-section-title {
    font-size: 1.5rem;
    color: #ff3333;
    margin-bottom: 15px;
}

.csa-list {
    list-style-type: none;
    padding: 0;
}

.csa-list li {
    margin-bottom: 10px;
}

.csa-list li::before {
    content: '✔';
    color: #ffd700;
    margin-right: 10px;
}

.csa-offer {
    font-size: 1.5rem;
    color: #ffd700;
    margin: 30px 0;
}

.csa-price {
    font-size: 2rem;
    font-weight: bold;
}

.csa-bonus {
    color: #ff3333;
    font-style: italic;
}

.csa-guarantee {
    font-weight: bold;
    margin: 20px 0;
}

.csa-contact {
    font-size: 1.2rem;
    margin-top: 30px;
}

.csa-emoji {
    font-size: 1.5em;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .csa-header {
        font-size: 2rem;
    }

    .csa-subheader {
        font-size: 1.5rem;
    }

    .csa-intro, .csa-section-title, .csa-offer {
        font-size: 1.2rem;
    }

    .csa-price {
        font-size: 1.8rem;
    }
}
.csspan{
    font-family: "Times New Roman", Times, serif;
    font-weight:700;
}
.social-section {
    background-color: #1a1a1a;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.social-card {
    width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.icon-container {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.icon-container i {
    font-size: 3rem;
    color: white;
}

.info-container {
    flex: 1;
    background-color: #000;
    border-radius: 0 0 10px 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.platform-name {
    color: white;
    font-weight: bold;
    font-size: 1.6rem;
    margin: 0;
}

.click-here {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.click-here:hover {
    background: white;
    color: black;
}

.telegram-gradient {
    background: linear-gradient(135deg, #0088cc, #005f8e);
}

.youtube-gradient {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.facebook-gradient {
    background: linear-gradient(135deg, #4267B2, #2f4a80);
}

.instagram-gradient {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}