* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --orange: #FF6600;
    --orange-hover: #E65C00;
    --cream: #FFF8F0;
    --dark: #333333;
    --light-gray: #F8F9FA;
}

body {
    color: var(--dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-cream {
    background-color: var(--cream);
}

.bg-orange {
    background-color: var(--orange);
}

.text-orange {
    color: var(--orange) !important;
}

.btn-orange {
    background-color: var(--orange);
    color: white;
    border: none;
    transition: background 0.3s ease;
}

.btn-orange:hover {
    background-color: var(--orange-hover);
    color: white;
}

.btn-outline-orange {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-outline-orange:hover, .btn-outline-orange.active {
    background-color: var(--orange);
    color: white;
    border-color: var(--orange);
}

.top-warning-bar {
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
    font-size: 0.85rem;
}

.navbar-brand span {
    font-size: 1.2rem;
}

.hero-section {
    min-height: 80vh;
}

.platform-card {
    transition: transform 0.2s ease;
    border: 1px solid #eee;
}

.platform-logo-img {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.bonus-box {
    background-color: rgba(255, 102, 0, 0.05);
    border-left: 4px solid var(--orange);
}

.stats-circle {
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-brand-img {
    max-width: 120px;
    height: auto;
    filter: none;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal {
    background: white;
    max-width: 600px;
    width: 90%;
    border-radius: 15px;
}

.cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9998;
    border-radius: 10px;
    display: none;
}

.rating-toggle-bar {
    z-index: 1000;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem !important;
    }
    .navbar-brand span {
        font-size: 1rem !important;
    }
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    .stats-circle {
        width: 180px;
        height: 180px;
        margin-top: 30px;
    }
}

.swiper-slide {
    height: auto !important;
}/* Parent container spacing */
.userClauseNet {
    padding: 25px 20px 0 20px; /* Top and side paddings */
    line-height: 1.6;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Paragraph styles */
.userClauseNet p {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 16px;
}

/* Heading styles with moderate sizes */
.userClauseNet h1 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.userClauseNet h2 {
    font-size: 21px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.userClauseNet h3 {
    font-size: 19px;
    margin-bottom: 14px;
    font-weight: 600;
}

.userClauseNet h4 {
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 600;
}

.userClauseNet h5 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* List styles */
.userClauseNet ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 25px;
    list-style-type: disc;
}

.userClauseNet li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Removing bottom margin from the last element to avoid double spacing */
.userClauseNet > *:last-child {
    margin-bottom: 0;
}

.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    main{
        flex: 1;
    }
}