:root {
    --primary: #00E676;
    /* Neon Green from screenshot */
    --secondary: #FFD700;
    /* Gold/Yellow */
    --dark-bg: #121212;
    --card-bg: #1A1A1A;
    --text: #ffffff;
    --text-dim: #b0b0b0;
    --btn-green: #00C853;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text);
    padding-bottom: 50px;
}

/* Header */
header {
    text-align: center;
    padding: 20px 0 10px;
    background: var(--dark-bg);
}

.logo-main {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: -5px;
    text-transform: none;
    /* OnlyGrupos seems MixCase in screenshot */
}

.logo-sub {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00E676;
    /* Neon Green */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Top Navigation */
.top-nav {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* More gap */
    max-width: 600px;
    margin: 0 auto;
}

.nav-row-1 {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.nav-row-1>* {
    flex: 1 1 0%;
    min-width: 0;
}

.nav-btn {
    flex: 1;
    background: #000;
    /* Black bg */
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    transition: all 0.2s;
    text-decoration: none;
    /* For A tags */
}

/* Specific button styles from screenshot */
.btn-outline-green {
    background-color: #00E676;
    /* Solid green background */
    border: 2px solid #00E676;
    color: #000000;
    /* Black text for contrast */
    position: relative;
    animation: greenPulse 2s infinite alternate;
}

.btn-outline-green:hover {
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.8);
    transform: scale(1.02);
}

@keyframes greenPulse {
    from {
        box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
    }

    to {
        box-shadow: 0 0 22px rgba(0, 230, 118, 0.7);
    }
}

.btn-outline-yellow {
    border: 2px solid #FFD700;
    color: #FFD700;
}

/* Sleek VIP Sponsored Button (Gold Outline) */
.btn-patrocinados-premium {
    background: rgba(255, 215, 0, 0.05);
    color: #FFCF00 !important;
    font-weight: 700;
    border: 1px solid #FFCF00 !important;
    border-radius: 10px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-patrocinados-premium:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #FFF !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

@keyframes goldPulse {
    from {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }

    to {
        box-shadow: 0 0 22px rgba(255, 215, 0, 0.7);
    }
}

@keyframes goldShine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    20% {
        transform: translateX(100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Premium OnlyModels Button */
.btn-onlymodels-premium {
    width: 85% !important;
    max-width: 340px !important;
    margin: 5px auto 0 auto;
    padding: 18px 20px !important;

    background: linear-gradient(45deg, #FFD700, #F57F17);
    color: #111 !important;
    font-weight: 900;
    border: 2px solid #FFD700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    border-radius: 10px !important;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: goldPulse 2s infinite alternate;
}

.btn-onlymodels-premium:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    transform: scale(1.02);
}

@keyframes flowGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes purplePulse {
    from {
        box-shadow: 0 0 12px rgba(124, 77, 255, 0.2);
    }

    to {
        box-shadow: 0 0 22px rgba(124, 77, 255, 0.5);
    }
}

.full-width {
    width: 100%;
    max-width: 400px;
    /* Reduced width */
    margin: 0 auto;
    /* Center */
    display: flex;
    flex-direction: row;
    /* Align icon and text */
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    padding: 8px;
    /* Reduced padding */
    gap: 10px;
}

/* Search */
.search-container {
    padding: 10px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper {
    background: #1A1A1A;
    border-radius: 12px;
    padding: 14px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #333;
}

#searchInput {
    background: transparent;
    border: none;
    color: #bbb;
    width: 100%;
    outline: none;
    font-size: 16px;
    /* 16px prevents iOS Safari from automatically zooming in */
}

#searchInput::placeholder {
    color: #666;
}

.filter-container {
    padding: 10px 20px 20px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.filter-container::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.filter-btn {
    background: #1A1A1A;
    border: 1px solid #333;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-width: max-content;
    flex-shrink: 0;
    justify-content: center;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #00E676;
    color: #000;
    border-color: #00E676;
}

.dropdown-container {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dropdown-container .nav-btn {
    width: 100%;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    /* Full width of button */
    min-width: auto;
    background-color: #1E1E1E;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 50;
    border-radius: 8px;
    border: 1px solid #333;
    margin-top: 5px;
    overflow: hidden;
}

.dropdown-content.show {
    display: block;
}

.dropdown-item {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    border-bottom: 1px solid #2a2a2a;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #333;
    color: white;
}

.dropdown-item.active {
    color: var(--primary);
    background: rgba(0, 230, 118, 0.1);
}

/* Grid */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns mobile */
    gap: 15px;
    padding: 0 15px;
}

@media (min-width: 600px) {
    .groups-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Cards */
.group-card {
    background: #1E1E1E;
    /* Distinct from body #121212 */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--primary);
    /* Neon Green Border */
    display: flex;
    flex-direction: column;
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.group-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    /* Neon border on hover */
}

/* ... existing styles ... */

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: var(--dark-bg);
}

.page-btn {
    background: transparent;
    border: 1px solid var(--primary);
    /* Neon Green Border */
    color: white;
    /* White arrow */
    font-weight: 400;
    /* Normal weight */
    font-size: 1.5rem;
    /* Larger icon */
    width: 45px;
    /* Square shape */
    height: 35px;
    /* Rectangular shape like screenshot */
    border-radius: 6px;
    /* Slightly rounded corners */
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding: 0;
    /* Centered via flex */
    box-shadow: none;
    /* No shadow by default */
}

.page-btn:hover:not(:disabled) {
    background: rgba(0, 230, 118, 0.1);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
    transform: translateY(-2px);
}

.page-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.page-btn:disabled {
    border-color: #333;
    color: #555;
    cursor: not-allowed;
    background: transparent;
    box-shadow: none;
}

/* If keeping image, it needs to be separate. If text only, remove image. 
   User said "layout of the photo", previous photo had images. 
   I will keep image but style the body to match this screenshot EXACTLY. */

.card-img {
    width: calc(100% + 30px);
    /* Counteract padding */
    margin: -15px -15px 15px -15px;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    display: block;
    /* Ensure it's visible */
}

.card-body {
    padding: 0;
    /* Padding is on parent now for consistent edge if no image, or we handle it inside */
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

/* Tag Styles from Screenshot */
.group-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tag-icon-img {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

/* Specific Colors matching screenshot */
/* Specific Colors matching screenshot */
.tag-cornos {
    background: rgba(255, 152, 0, 0.15);
    /* Orange */
    color: #FF9800;
}

.tag-cdzinhas {
    background: rgba(255, 64, 129, 0.15);
    /* Pink */
    color: #FF4081;
}

.tag-gays {
    background: rgba(224, 64, 251, 0.15);
    /* Purple */
    color: #E040FB;
}

.tag-modelos {
    background: rgba(255, 215, 0, 0.15);
    /* Gold */
    color: #FFD700;
}

.tag-putaria24h {
    background: rgba(0, 230, 118, 0.15);
    /* Green */
    color: #00E676;
}

.tag-trans {
    background: rgba(0, 176, 255, 0.15);
    /* Cyan */
    color: #00B0FF;
}

.tag-vazadas {
    background: rgba(255, 82, 82, 0.15);
    /* Red */
    color: #FF5252;
}

.tag-amizade {
    background: rgba(68, 138, 255, 0.15);
    /* Blue */
    color: #448AFF;
}

.group-date {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    margin-top: 2px;
}

.group-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-top: 4px;
}

.group-desc {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.btn-card-join {
    background: #00E676;
    /* Bright Green */
    color: #000;
    font-weight: 900;
    text-align: center;
    padding: 14px 0;
    border-radius: 8px;
    /* Slightly rounded */
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    width: 100%;
    display: block;
    margin-top: auto;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 230, 118, 0.2);
    transition: transform 0.2s;
    border: none;
    /* Reset for button element */
    cursor: pointer;
    /* Reset for button element */
    font-family: 'Inter', sans-serif;
    /* Ensure font is inherited */
}

.btn-card-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 230, 118, 0.3);
}



/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    background: var(--dark-bg);
}

.page-btn {
    background: transparent;
    border: 1px solid #333;
    color: #ccc;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 230, 118, 0.1);
}

.page-btn.active {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #222;
}

/* Standard Modal Design - Strict Match */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    /* display: grid;  <-- Removed to let JS toggle it */
    place-items: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.modal.show {
    display: grid;
}

.modal-content {
    background: #121212;
    /* Very dark grey/black */
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 92dvh;
    position: relative;
    border: 1px solid #00E676;
    /* Neon Green Border */
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
    /* Subtle Neon Glow */
    padding: 24px;
    text-align: left;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.modal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.modal-title-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding-right: 20px;
}

#modalTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.modal-accesses {
    color: #00E676;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.close-modal {
    position: absolute;
    top: -5px;
    right: -5px;
    background: transparent;
    color: #888;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s;
    border: none;
}

.close-modal:hover {
    color: white;
}

.modal-body {
    padding: 0;
}

#modalDesc {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Rules Section */
.rules-title {
    color: #00E676;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rules-container {
    background: #1E1E1E;
    /* Slightly lighter than modal bg */
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Removing gap to use padding/border for dividers */
}

.rules-list li {
    color: #ccc;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle divider */
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li::before {
    content: '•';
    color: #00E676;
    font-size: 1.5rem;
    line-height: 0.5;
}

/* Modal Buttons */
.btn-modal-enter {
    background: #00E676;
    color: #000;
    font-weight: 800;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    display: block;
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-modal-enter:hover {
    opacity: 0.9;
    transform: none;
}

.btn-modal-back {
    background: transparent;
    border: 1px solid #ffffff;
    /* White thin border */
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-modal-back:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Pull to Refresh Indicator */
.refresh-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.2s ease-out;
}

.refresh-indicator.visible {
    transform: translateY(10px);
}

.refresh-icon {
    font-size: 24px;
    color: #00E676;
    background: rgba(0, 0, 0, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.refresh-indicator.loading .refresh-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Sponsored Modal Container Styles --- */

.premium-content {
    border: 1px solid #FFD700 !important;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2) !important;
}

.modal-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 10px;
}

.premium-title {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.close-premium {
    color: #FFD700 !important;
    font-size: 2rem !important;
    top: 0 !important;
    right: 0 !important;
}

.premium-subtitle {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: left;
}

.premium-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Margin bottom is already in premium-card */
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar for premium grid */
.premium-grid::-webkit-scrollbar {
    width: 4px;
}

.premium-grid::-webkit-scrollbar-track {
    background: #111;
}

.premium-grid::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

/* --- Sponsored Modal Groups (Gold Glowing Aesthetic) --- */
.premium-group-card {
    background: #111;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 20px 20px 25px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.premium-group-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: pgShine 4s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes pgShine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.pgc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.pgc-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pgc-title {
    color: #4ADE80;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pgc-emoji {
    font-size: 1.15rem;
    line-height: 1;
}

.pgc-badges {
    display: flex;
    gap: 5px;
    align-items: center;
}

.badge-yellow {
    background: #FFD700;
    color: #111;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.pgc-desc {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.pgc-btn {
    background: linear-gradient(to bottom, #FFDF40, #E6A100);
    color: #111;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: transform 0.2s;
    margin-top: auto;
}

.pgc-btn:hover {
    transform: scale(1.02);
}

/* Safety Disclaimer Footer */
.safety-disclaimer {
    max-width: 400px;
    width: 90%;
    margin: 40px auto 20px auto;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #3a3a3a;
}

.safety-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.safety-header span {
    color: #FFD54F;
    font-size: 1.4rem;
}

.safety-header h3 {
    color: #FFD54F;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.safety-sub {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 5px 0 15px 0;
    text-transform: uppercase;
}

.safety-sub span {
    color: #FFD54F;
}

.safety-rules {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.safety-rules li {
    position: relative;
    padding-left: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.safety-rules li::before {
    content: "•";
    color: #FFD54F;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.safety-body-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.safety-body-text strong {
    color: #fff;
    font-weight: 600;
}

.safety-divider {
    height: 1px;
    background: #444;
    margin: 20px 0;
    border: none;
}

.safety-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.safety-footer-left {
    font-size: 0.9rem;
    color: #ccc;
    max-width: 60%;
}

.safety-footer-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.safety-footer-links a {
    color: #ccc;
    text-decoration: none;
}

.safety-footer-links a:hover {
    text-decoration: underline;
}

.safety-rta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.safety-rta-box {
    border: 1px solid #ccc;
    padding: 4px 6px;
    font-weight: bold;
    font-size: 0.85rem;
    color: #ccc;
    border-radius: 3px;
}

.safety-rta-text {
    font-size: 0.8rem;
    line-height: 1.1;
    color: #ccc;
}

/* Legal & DMCA Footer */
.legal-footer {
    text-align: center;
    max-width: 800px;
    margin: 30px auto 40px auto;
    padding: 0 20px;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.legal-footer p {
    margin-bottom: 10px;
}

.legal-footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-footer a:hover {
    color: #FFD54F;
    text-decoration: underline;
}