       * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f1014;
            color: #eeeeee;
            padding-bottom: 60px;
        }

        header {
            background: #17181f;
            border-bottom: 2px solid #ff3333;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            gap: 15px;
        }

        .logo a {
            font-size: 22px;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .logo span {
            color: #ff3333;
            text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .nav-menu a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 4px;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            background: #ff3333;
            color: #fff;
            box-shadow: 0 0 10px rgba(255, 51, 51, 0.4);
        }

        .count-badge {
            background: rgba(255,255,255,0.15);
            color: #fff;
            font-size: 11px;
            padding: 1px 6px;
            border-radius: 10px;
            margin-left: 4px;
        }

        .nav-menu a:hover .count-badge,
        .nav-menu a.active .count-badge {
            background: rgba(0,0,0,0.2);
        }

        .main-container {
            max-width: 1600px;
            margin: 30px auto;
            padding: 0 20px;
            min-height: 70vh;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 10px;
            padding: 10px 0;
            width: 100%;
        }

        .card {
            background: #17181f;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
            transition: all 0.3s ease;
            border: 1px solid #232530;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: #ff3333;
            box-shadow: 0 5px 20px rgba(255,51,51,0.2);
        }

        .card a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .image-container {
            position: relative;
            width: 100%;
            padding-top: 133%;
            background: #111;
        }

        .image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .badge-network {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 11px;
            font-weight: bold;
            color: #fff;
            padding: 3px 8px;
            border-radius: 4px;
            text-transform: uppercase;
            z-index: 5;
            box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }

        .badge-stripchat { background: #DC143C; }
        .badge-camsoda { background: #0198EB; }
        .badge-cam4 { background: #140600; }
        .badge-chaturbate { background: #cc5500; }
        .badge-skyprivate { background: #006400; }
        .badge-bongacams { background: #870c0c; }
        .badge-hd {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #4caf50;
            color: #fff;
            font-size: 10px;
            font-weight: bold;
            padding: 3px 5px;
            border-radius: 4px;
            z-index: 5;
        }

        .info-bar {
            padding: 12px;
            font-size: 14px;
            background: #17181f;
        }

        .name-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }

        .username {
            font-weight: bold;
            color: #fff;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 150px;
        }

        .country-flag {
            background: #282a36;
            color: #ff5252;
            font-size: 11px;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 3px;
            text-transform: uppercase;
            border: 1px solid #3d4054;
        }

        .meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #888;
            font-size: 12px;
        }

        .languages { color: #64b5f6; }

        .status-live {
            font-weight: bold;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }

        .seo-blurb {
            max-width: 1600px;
            margin: 18px auto 0;
            padding: 0 20px;
            color: #b9bcc7;
            font-size: 14px;
            line-height: 1.6;
        }

        @media (max-width: 992px) {
            .nav-container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .nav-menu {
                justify-content: center;
            }

            .nav-menu a {
                font-size: 13px;
                padding: 6px 10px;
            }
        }
    
        
        /* Container principal pentru asezarea pe 3 coloane */
.main-layout-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
    padding: 10px;
    box-sizing: border-box;
}

/* Stiluri pentru cele doua sidebar-uri laterale */
.sidebar-left, .sidebar-right {
    width: 220px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

/* Limitare bannere la maximum 300px cu centrare */
.sidebar-left img, .sidebar-right img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Zona de mijloc se extinde automat pe restul ecranului */
.center-content {
    flex-grow: 1;
    width: 100%;
}

/* Responsive: pe telefoane si tablete sidebar-urile coboara automat jos */
@media (max-width: 1200px) {
    .main-layout-container {
        flex-direction: column;
    }
    .sidebar-left, .sidebar-right {
        width: 100%;
        min-width: 100%;
    }
}
