/* Bitnest Landing Page Styles */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.landing-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
}

.content {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #333;
    line-height: 1.3;
}

.main-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 25px 0;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 25px;
}

h2 {
    font-size: 26px;
    font-weight: bold;
    margin: 40px 0 20px 0;
}

h3 {
    font-size: 22px;
    font-weight: bold;
    margin: 35px 0 15px 0;
}

p {
    margin: 0 0 24px 0;
    font-size: 17px;
    line-height: 1.8;
}

strong {
    font-weight: bold;
    color: #000;
}

em {
    font-style: italic;
}

a {
    color: #0066cc;
    text-decoration: underline;
}

a:hover {
    color: #004499;
}

.image-container {
    margin: 30px 0;
    text-align: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    padding: 2px;
}

.dialog {
    font-style: italic;
    color: #444;
    padding-left: 20px;
    border-left: 3px solid #ccc;
    margin: 25px 0;
}

.quote-block {
    background-color: #f9f9f9;
    border-left: 4px solid #666;
    padding: 15px 20px;
    margin: 25px 0;
    font-style: italic;
}

.quote-block p {
    margin: 0;
    color: #444;
}

.highlight-text {
    font-size: 24px;
    font-weight: bold;
    color: #c00;
    text-align: center;
    margin: 30px 0;
    text-transform: uppercase;
}

.cta-text {
    background-color: #fffde7;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: 30px 0;
}

.cta-button-container {
    text-align: center;
    margin: 35px 0;
}

.cta-button {
    display: inline-block;
    background-color: #c00;
    color: #fff !important;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a00;
    color: #fff !important;
}

.ps-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.ps-section h3 {
    font-size: 20px;
    color: #666;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .content {
        padding: 25px 15px 50px;
    }
    .main-title {
        font-size: 26px;
    }
    .subtitle {
        font-size: 16px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 19px;
    }
    p {
        font-size: 16px;
    }
    .highlight-text {
        font-size: 20px;
    }
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding: 20px 12px 40px;
    }
    .main-title {
        font-size: 22px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    p {
        font-size: 15px;
        line-height: 1.6;
    }
    .dialog {
        padding-left: 15px;
    }
    .quote-block {
        padding: 12px 15px;
    }
    .cta-text {
        padding: 15px;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
}

/* Telegram browser fix */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-text-size-adjust: 100%;
    }
}
