body {
    -webkit-word-break: break-all;
    word-break: break-all;
    font-family: 'Lora', serif;
}

img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.btn-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 70px;
    transition: background-color 0.3s ease;
}

@media (max-width: 767px) {
    .btn-cta {
        width: 100%;
    }
}

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

nav a {
    transition: color 0.3s ease;
}

@media (max-width: 991px) {
    nav {
        display: none !important;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.tab-btn {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab-btn.active {
    background-color: #2563eb !important;
    color: white !important;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

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

.spoiler-content {
    display: none;
}

.spoiler-content.active {
    display: block;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

a[href^="#"] {
    scroll-behavior: smooth;
}

table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

table td {
    word-break: break-word;
}

@media (max-width: 767px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}