/* Consolidated CSS generated on 2025-07-02 */

/* ===== File: styles.css ===== */
/* ====== MAIN STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: 
        radial-gradient(circle at 70% 100%, rgba(129, 27, 82, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 30% 0%, rgba(95, 34, 103, 0.6) 0%, transparent 50%),
        linear-gradient(to top left, #00274D, #4B0082, #2e3591, #3f3890);
    color: #ffffff;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(135deg, #2c1b5b42, #342585);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(129, 27, 82, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.live-badge {
    background: linear-gradient(135deg, #811b52, #5f2267);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-badge.show {
    opacity: 1;
    transform: scale(1);
    animation: liveGlow 2s infinite;
}

.live-badge.hide {
    opacity: 0;
    transform: scale(0.8);
}

@keyframes liveGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
        background: linear-gradient(135deg, #ff0000, #ff4757);
    }
    50% { 
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
        background: linear-gradient(135deg, #ff4757, #ff0000);
    }
}

.live-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ====== MINI PLAYER ====== */
.mini-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 220px;
    background: rgba(0, 39, 77, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 15px;
    border: 1px solid rgba(129, 27, 82, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.mini-player.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mini-player.hide {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    pointer-events: none;
}

.mini-player-header {
    background: linear-gradient(135deg, #811b52, #4B0082);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mini-player-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: headerShimmer 3s infinite;
}

@keyframes headerShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mini-player-title {
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.mini-live-dot {
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.mini-player-controls {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.mini-control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 11px;
}

.mini-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mini-player-content {
    height: calc(100% - 45px);
    position: relative;
    background: linear-gradient(135deg, #4B0082, #00274D);
    overflow: hidden;
}

.mini-player-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

.mini-player-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #811b52, #4B0082)
    color: white;
    text-align: center;
    padding: 20px;
}

.mini-twitch-icon {
    font-size: 40px;
    color: #9146ff;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.mini-stream-title {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.mini-viewer-count {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mini-watch-btn {
    background: linear-gradient(135deg, #9146ff, #6441a4);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.mini-watch-btn:hover {
    background: linear-gradient(135deg, #6441a4, #9146ff);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.4);
}

/* ====== HEADER NAVIGATION ====== */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30px;
    gap: 60px;
}

.header-nav-section {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    position: relative;
}

.header-nav-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7), transparent);
    border-radius: 1px;
}

.header-nav-item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    margin: 0;
}

.header-nav-item:hover {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: #ffffff;
    transform: translateY(-1px);
}

.header-nav-item.active {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(129, 27, 82, 0.3);
}

.header-nav-item i {
    width: 14px;
    margin-right: 6px;
    font-size: 11px;
    color: #ffffff;
}

.header-new-badge {
    background: rgba(75, 0, 130, 0.9);
    color: white;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 7px;
    font-weight: bold;
    margin-left: 5px;
    backdrop-filter: blur(10px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 101;
}

.header-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-icon:hover {
    color: #E74C3C;
}

.login-btn {
    background: linear-gradient(135deg, #E74C3C, #2D1B4E);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 102;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.back-btn {
    background: linear-gradient(135deg, #E74C3C, #2D1B4E);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* ====== MAIN LAYOUT ====== */
.main-container {
    flex-direction: column;
    min-height: calc(100vh - 70px);
    padding-top: 70px;
}

.content {
    flex: 1;
    padding: 30px;
}

.content-header {
    text-align: center;
    margin-bottom: 30px;
}

.content-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ====== OFFERS GRID - CORRIGIDO PARA FLIP 3D ====== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    height: fit-content;
}

/* ====== ANIMAÇÃO FLIP 3D - CORRIGIDA ====== */
.offer-card {
    background: transparent;
    border-radius: 16px;
    height: 420px;
    width: 100%;
    aspect-ratio: 1;
    perspective: 1200px !important;
    transform-style: preserve-3d !important;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    filter: brightness(1.05);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1) !important;
    transform-style: preserve-3d !important;
    will-change: transform;
    transform-origin: center center;
}

.offer-card.flipped .card-inner {
    transform: rotateY(180deg) !important;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    -moz-backface-visibility: hidden !important;
    background: rgba(0, 39, 77, 0.75);
    backdrop-filter: blur(25px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(129, 27, 82, 0.25);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.card-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(180deg) !important;
    padding: 20px;
    text-align: left;
    z-index: 1;
    background: linear-gradient(145deg, #00274D, #4B0082);
}

.offer-card.flipping {
    pointer-events: none;
}

.offer-card.flipping .card-inner {
    animation: cardFlipHighlight 0.8s ease-in-out;
}

@keyframes cardFlipHighlight {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 15px 50px rgba(129, 27, 82, 0.6);
        transform: scale(1.02) rotateY(90deg);
    }
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
}

/* ====== CARD HEADERS COM IMAGENS ====== */
.card-header {
    position: relative;
    height: 160px;
    background: linear-gradient(45deg, #4B0082, #00274D);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 27, 82, 0.15), rgba(75, 0, 130, 0.15));
    z-index: 1;
}

.card-header > * {
    position: relative;
    z-index: 2;
}

.powbet-header {
    background: url('../../images/logos/powbet.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.monsterwin-header {
    background: url('../../images/logos/monsterwin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.quickwin-header {
    background: url('../../images/logos/quickwin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.oscarspin-header {
    background: url('../../images/logos/oscarspin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.supabet-header {
    background: url('../../images/logos/supabet.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.zetcasino-header {
    background: url('../../images/logos/zetcasino.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.casino-badge {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hot-badge {
    background: linear-gradient(135deg, #811b52, #5f2267);
    color: white;
}

.new-badge-card {
    background: linear-gradient(135deg, #4B0082, #2e3591);
    color: white;
}

.top-badge {
    background: linear-gradient(135deg, #00274D, #3f3890);
    color: white;
}

.show-more-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 12px !important;
    font-size: 10px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.show-more-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.show-more-btn:hover:before {
    left: 100%;
}

.show-more-btn:hover {
    background: rgba(129, 27, 82, 0.6) !important;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.3);
}

.show-more-btn:active {
    transform: scale(0.95);
}

.show-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.header-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.casino-name {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    display: none;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mb-way-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.crypto-icon, .shield-icon {
    font-size: 12px;
}

.crypto-icon {
    color: #FFD93D;
}

.shield-icon {
    color: #4B0082;
}

/* ====== CARD CONTENT ====== */
.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, transparent 0%, rgba(129, 27, 82, 0.08) 100%);
}

.offer-title {
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.boxes-container {
    flex: 1;
    margin-bottom: 12px;
}

.boxes-row {
    display: grid;
    gap: 8px;
    margin-bottom: 8px;
}

.boxes-row.top {
    grid-template-columns: 1fr 1fr 1fr;
}

.boxes-row.bottom {
    grid-template-columns: 1fr 1fr;
}

.detail-box {
    background: rgba(0, 39, 77, 0.7);
    border: 1px solid rgba(129, 27, 82, 0.3);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.detail-box:hover {
    border-color: rgba(129, 27, 82, 0.5);
    background: rgba(129, 27, 82, 0.15);
}

.detail-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: bold;
}

.detail-value {
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.card-footer {
    text-align: center;
}

.terms {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.claim-button {
    width: 80%;
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.4);
}

.claim-button:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.5);
}

/* ====== CARD BACK CONTENT ====== */
.back-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 10px;
}

.casino-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 12px;
    background: linear-gradient(45deg, #811b52, #4B0082);
}

.powbet-logo { 
    background: linear-gradient(45deg, #00274D, #4B0082);
}
.monsterwin-logo { 
    background: linear-gradient(45deg, #4B0082, #2e3591);
}
.quickwin-logo { 
    background: linear-gradient(45deg, #2e3591, #3f3890);
}
.oscarspin-logo { 
    background: linear-gradient(45deg, #4B0082, #811b52);
}
.supabet-logo { 
    background: linear-gradient(45deg, #811b52, #5f2267);
}
.zetcasino-logo { 
    background: linear-gradient(45deg, #5f2267, #3f3890);
}

.back-casino-info h3 {
    color: white;
    font-size: 20px;
    margin: 0;
}

.established {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 3px;
}

.back-details {
    flex: 1;
}

.detail-section {
    margin-bottom: 15px;
}

.detail-title {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 3px;
}

.detail-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.3;
}

.features-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.features-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
    line-height: 1.3;
}

.features-list li::before {
    content: "•";
    color: #811b52;
    position: absolute;
    left: 0;
}

.close-btn {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(129, 27, 82, 0.6) !important;
    border: none !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    color: white !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: bold !important;
    z-index: 100 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    background: rgba(129, 27, 82, 0.8) !important;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.4);
}

.close-btn:active {
    transform: scale(0.9) rotate(90deg);
}

.close-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ====== ANIMAÇÃO DE CARREGAMENTO DOS CARDS ====== */
.offer-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardLoadIn 0.6s ease forwards;
}

.offer-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

@keyframes cardLoadIn {
    from {
        transform: translateY(30px) scale(0.9);
    }
    to {
        transform: translateY(0) scale(1);
    }
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== AGE VERIFICATION ====== */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in;
}

.age-verification-wrapper {
    background: rgba(0, 39, 77, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255);
    padding: 1px;
    border-radius: 15px;
}

.age-verification-modal {
    background: linear-gradient(145deg, #4B0082, #00274D);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.age-verification-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-verification-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.3;
}

.age-verification-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 170px;
    border: none;
}

.age-btn-enter {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.4);
}

.age-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.5);
}

.age-btn-exit {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.age-btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.age-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-content {
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.page-content.unblurred {
    filter: none;
}

/* ====== COMING SOON PAGES ====== */
.community-container, .mini-game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-card {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 40px;
}

.coming-soon-icon {
    font-size: 80px;
    color: #811b52;
    margin-bottom: 30px;
    opacity: 0.8;
}

.coming-soon-card h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.notify-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

/* ====== LOGIN MODAL E NOTIFICAÇÕES - CORRIGIDO ====== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: linear-gradient(135deg, #2f202e, #4B0082);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.login-modal.show .login-modal-content {
    transform: translateY(0);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.login-content {
    text-align: center;
}

.twitch-logo-big {
    font-size: 48px;
    color: #9146ff;
    margin-bottom: 20px;
}

.login-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.login-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.twitch-login-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
}

.twitch-login-btn:hover {
    background: linear-gradient(135deg, #772ce8, #9146ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

.twitch-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-benefits {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-benefits h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.login-benefits li i {
    color: #4ecdc4;
    font-size: 12px;
}

.login-btn.logged-in {
    background: linear-gradient(135deg, #811b52, #4B0082)
    padding: 8px 15px;
    min-width: 150px;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
}

.user-dropdown {
    z-index: 1000;
}

.simple-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.simple-notification.success {
    background: linear-gradient(135deg, #811b52, #4B0082)
}

.simple-notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.simple-notification.info {
    background: linear-gradient(135deg, #2196F3, #1976d2);
}

.simple-notification.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.simple-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.login-modal:not(.show) {
    display: none !important;
}

.login-modal.show + * {
    pointer-events: none;
}

.login-modal.show .login-modal-content {
    pointer-events: all;
}

.login-modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.login-modal.closing .login-modal-content {
    animation: modalSlideOut 0.3s ease forwards;
}

@keyframes modalSlideOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.9);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 800px;
        gap: 18px;
    }
    
    .offer-card {
        height: 360px;
    }
    
    .header-nav-section {
        gap: 15px;
    }

    .header-nav-item {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo {
        height: 50px;
    }

    .live-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .header-center {
        width: 100%;
        margin: 0;
        gap: 30px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .header-center::-webkit-scrollbar {
        display: none;
    }

    .header-nav-section:not(:last-child)::after {
        right: -15px;
        height: 20px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    }

    .header-nav-section {
        gap: 12px;
        min-width: max-content;
    }

    .header-nav-item {
        font-size: 9px;
        border-radius: 8px;
        min-width: max-content;
    }

    .header-new-badge {
        font-size: 6px;
        margin-left: 4px;
    }

    .header-right {
        gap: 15px;
    }

    .header-icon {
        font-size: 16px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .main-container {
        min-height: calc(100vh - 140px);
        padding-top: 140px;
    }

    .content {
        padding: 20px 15px;
    }

    .content-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 20px;
        max-width: 100%;
    }

    .offer-card {
        height: auto;
        min-height: 350px;
        aspect-ratio: unset;
        perspective: 800px !important;
    }

    .card-inner {
        transition: transform 0.6s ease !important;
    }

    .card-header {
        height: 120px;
    }

    .casino-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .show-more-btn {
        font-size: 9px !important;
        padding: 5px 10px !important;
    }

    .header-icons .mb-way-badge {
        font-size: 8px;
        padding: 2px 5px;
    }

    .crypto-icon, .shield-icon {
        font-size: 10px;
    }

    .card-content {
        padding: 16px;
    }

    .offer-title {
        font-size: 13px;
        margin-bottom: 12px;
        min-height: auto;
    }

    .boxes-row.top {
        grid-template-columns: 1fr 1fr;
    }

    .boxes-row.bottom {
        grid-template-columns: 1fr;
    }

    .detail-box {
        padding: 10px 8px;
        min-height: 50px;
    }

    .detail-label {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .detail-value {
        font-size: 11px;
    }

    .claim-button {
        width: 90%;
        padding: 14px;
        margin-top: 10px;
    }

    .card-back {
        padding: 16px;
    }

    .close-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }

    .casino-logo {
        width: 45px;
        height: 45px;
    }

    .back-casino-info h3 {
        font-size: 18px;
    }

    .footer {
        padding: 15px 15px;
        gap: 20px;
        margin-top: 40px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .age-verification-modal {
        margin: 15px;
        padding: 30px 20px;
    }

    .age-verification-title {
        font-size: 24px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-btn {
        min-width: 100%;
    }

    .mini-player {
        width: 280px;
        height: 180px;
        bottom: 15px;
        right: 15px;
    }

    .mini-player-header {
        padding: 8px 12px;
    }

    .mini-player-title {
        font-size: 11px;
    }

    .mini-control-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .mini-twitch-icon {
        font-size: 30px;
    }

    .login-modal-content {
        padding: 30px 20px;
        width: 90vw;
        margin: 20px;
    }
    
    .twitch-logo-big {
        font-size: 60px;
    }
    
    .user-name {
        display: none;
    }

    .simple-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 12px;
    }

    .logo {
        height: 45px;
    }

    .header-nav-item {
        font-size: 8px;
        padding: 4px 8px;
    }

    .content {
        padding: 15px 10px;
    }

    .content-title {
        font-size: 18px;
    }

    .offer-card {
        min-height: 330px;
        perspective: 600px !important;
    }

    .card-inner {
        transition: transform 0.5s ease !important;
    }

    .card-header {
        height: 110px;
        padding: 10px;
    }

    .card-content {
        padding: 14px;
    }

    .offer-title {
        font-size: 12px;
    }

    .detail-box {
        padding: 8px 6px;
    }

    .detail-label {
        font-size: 7px;
    }

    .detail-value {
        font-size: 10px;
    }

    .footer {
        padding: 12px 10px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .age-verification-modal {
        padding: 25px 15px;
    }

    .age-verification-title {
        font-size: 20px;
    }

    .mini-player {
        width: 250px;
        height: 160px;
        bottom: 10px;
        right: 10px;
    }
}

/* ====== FIX PARA BROWSERS ANTIGOS ====== */
@supports not (transform: rotateY(180deg)) {
    .offer-card.flipped .card-front {
        display: none;
    }
    
    .offer-card.flipped .card-back {
        display: block;
        transform: none !important;
    }
    
    .card-back {
        display: none;
    }
}

/* ====== FIX PARA SAFARI ====== */
@supports (-webkit-appearance: none) {
    .card-front,
    .card-back {
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
    }
    
    .card-inner {
        -webkit-transform-style: preserve-3d;
    }
}

/* ====== REDUCED MOTION SUPPORT ====== */
@media (prefers-reduced-motion: reduce) {
    .card-inner {
        transition: transform 0.3s ease !important;
    }
    
    .offer-card:hover {
        transform: none;
    }
    
    @keyframes cardFlipHighlight {
        0%, 100% {
            transform: none;
        }
        50% {
            transform: scale(1.01);
        }
    }
}
/* ====== STICKY FOOTER LAYOUT ====== */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garantir altura total da viewport */
}

/* Conteúdo principal deve expandir para empurrar o rodapé */
.main-container, main, .page-content, .content-wrapper, .leaderboard-container,
.clips-container, .twitch-container, .about-container, .contact-container,
.shop-container {
    flex: 1 0 auto;
}

/* Rodapé sempre no fundo */
.footer {
    margin-top: auto;
}

/* ===== File: about-me.css ===== */
/* ====== ABOUT ME PAGE STYLES ====== */
.about-me-page .main-container {
    padding-top: 100px; /* Aumentado para não bater no header */
    padding-bottom: 0px;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    margin-bottom: 60px;
    padding: 50px 40px; /* Aumentado o padding */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(129, 27, 82, 0.05), transparent);
    animation: heroShimmer 4s infinite;
}

@keyframes heroShimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 30px; /* Aumentado a margem */
    background: linear-gradient(135deg, #811b52, #4B0082);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(129, 27, 82, 0.4);
}

.page-title {
    margin-bottom: 15px; /* Aumentado */
    position: relative;
    z-index: 2;
}

.page-subtitle {
    margin-bottom: 25px; /* Aumentado */
    position: relative;
    z-index: 2;
}

.hero-description {
    position: relative;
    z-index: 2;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px; /* Aumentado */
}

.info-card {
    background: rgba(75, 0, 130, 0.1);
    border: 1px solid rgba(75, 0, 130, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(75, 0, 130, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    background: rgba(75, 0, 130, 0.2);
    border-color: rgba(75, 0, 130, 0.5);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 36px;
    color: #811b52;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.card-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.stats-grid {
    gap: 25px; /* Aumentado */
    margin-bottom: 50px; /* Aumentado */
}

.stat-item {
    background: rgba(129, 27, 82, 0.1);
    border: 1px solid rgba(129, 27, 82, 0.3);
    border-radius: 15px;
    padding: 25px 20px; /* Aumentado padding vertical */
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(129, 27, 82, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    background: rgba(129, 27, 82, 0.2);
    border-color: rgba(129, 27, 82, 0.5);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 32px; /* Aumentado */
    color: #811b52;
    margin-bottom: 8px; /* Aumentado */
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 14px;
    font-weight: 600; /* Adicionado peso */
    position: relative;
    z-index: 2;
}

.full-width-card {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 50px 40px; /* Aumentado */
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px; /* Aumentado */
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px; /* Aumentado */
    margin-top: 30px; /* Aumentado */
}

.achievement-item {
    background: rgba(129, 27, 82, 0.1);
    border: 1px solid rgba(129, 27, 82, 0.3);
    border-radius: 10px;
    padding: 25px 20px; /* Aumentado */
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(129, 27, 82, 0.2);
    transform: scale(1.05);
}

.achievement-icon {
    font-size: 28px; /* Aumentado */
    color: #FFD93D;
    margin-bottom: 12px; /* Aumentado */
}

.achievement-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.social-section {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px; /* Aumentado */
    margin-top: 30px; /* Aumentado */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px; /* Aumentado */
    height: 65px; /* Aumentado */
    background: rgba(129, 27, 82, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 26px; /* Aumentado */
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    background: rgba(129, 27, 82, 0.4);
    transform: translateY(-5px) scale(1.1);
    color: #811b52;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-me-page .main-container {
        padding-top: 160px; /* Ajustado para mobile */
    }

    .about-container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 40px 20px; /* Aumentado para mobile */
        margin-bottom: 40px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
        font-size: 48px;
        margin-bottom: 25px;
    }

    .page-title {
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .stats-grid {
        margin-bottom: 40px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card, .full-width-card {
        padding: 25px 20px;
    }

    .stat-number {
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .hero-section {
        padding: 30px 15px;
    }
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 334px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== AGE VERIFICATION ====== */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in;
}

.age-verification-wrapper {
    background: rgba(0, 39, 77, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255);
    padding: 1px;
    border-radius: 15px;
}

.age-verification-modal {
    background: linear-gradient(145deg, #4B0082, #00274D);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.age-verification-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-verification-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.3;
}

.age-verification-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 170px;
    border: none;
}

.age-btn-enter {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.4);
}

.age-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.5);
}

.age-btn-exit {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.age-btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.age-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-content {
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.page-content.unblurred {
    filter: none;
}

/* ====== COMING SOON PAGES ====== */
.community-container, .mini-game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-card {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 40px;
}

.coming-soon-icon {
    font-size: 80px;
    color: #811b52;
    margin-bottom: 30px;
    opacity: 0.8;
}

.coming-soon-card h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.notify-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

/* ====== LOGIN MODAL E NOTIFICAÇÕES - CORRIGIDO ====== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: linear-gradient(135deg, #2f202e, #4B0082);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.login-modal.show .login-modal-content {
    transform: translateY(0);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.login-content {
    text-align: center;
}

.twitch-logo-big {
    font-size: 48px;
    color: #9146ff;
    margin-bottom: 20px;
}

.login-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.login-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.twitch-login-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
}

.twitch-login-btn:hover {
    background: linear-gradient(135deg, #772ce8, #9146ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

.twitch-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-benefits {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-benefits h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.login-benefits li i {
    color: #4ecdc4;
    font-size: 12px;
}

.login-btn.logged-in {
    background: linear-gradient(135deg, #811b52, #4B0082);
    padding: 8px 15px;
    min-width: 150px;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    font-size: 14px;
    font-weight: 600;
}

.user-dropdown {
    z-index: 1000;
}

.simple-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.simple-notification.success {
    background: linear-gradient(135deg, #811b52, #4B0082)
}

.simple-notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.simple-notification.info {
    background: linear-gradient(135deg, #2196F3, #1976d2);
}

.simple-notification.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.simple-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.login-modal:not(.show) {
    display: none !important;
}

.login-modal.show + * {
    pointer-events: none;
}

.login-modal.show .login-modal-content {
    pointer-events: all;
}

.login-modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.login-modal.closing .login-modal-content {
    animation: modalSlideOut 0.3s ease forwards;
}

@keyframes modalSlideOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.9);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 800px;
        gap: 18px;
    }
    
    .offer-card {
        height: 360px;
    }
    
    .header-nav-section {
        gap: 15px;
    }

    .header-nav-item {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo {
        height: 50px;
    }

    .live-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .header-center {
        width: 100%;
        margin: 0;
        gap: 30px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .header-center::-webkit-scrollbar {
        display: none;
    }

    .header-nav-section:not(:last-child)::after {
        right: -15px;
        height: 20px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    }

    .header-nav-section {
        gap: 12px;
        min-width: max-content;
    }

    .header-nav-item {
        font-size: 9px;
        border-radius: 8px;
        min-width: max-content;
    }

    .header-new-badge {
        font-size: 6px;
        margin-left: 4px;
    }

    .header-right {
        gap: 15px;
    }

    .header-icon {
        font-size: 16px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .main-container {
        min-height: calc(100vh - 140px);
        padding-top: 140px;
    }

    .content {
        padding: 20px 15px;
    }

    .content-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 20px;
        max-width: 100%;
    }

    .offer-card {
        height: auto;
        min-height: 350px;
        aspect-ratio: unset;
        perspective: 800px !important;
    }

    .card-inner {
        transition: transform 0.6s ease !important;
    }

    .card-header {
        height: 120px;
    }

    .casino-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .show-more-btn {
        font-size: 9px !important;
        padding: 5px 10px !important;
    }

    .header-icons .mb-way-badge {
        font-size: 8px;
        padding: 2px 5px;
    }

    .crypto-icon, .shield-icon {
        font-size: 10px;
    }

    .card-content {
        padding: 16px;
    }

    .offer-title {
        font-size: 13px;
        margin-bottom: 12px;
        min-height: auto;
    }

    .boxes-row.top {
        grid-template-columns: 1fr 1fr;
    }

    .boxes-row.bottom {
        grid-template-columns: 1fr;
    }

    .detail-box {
        padding: 10px 8px;
        min-height: 50px;
    }

    .detail-label {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .detail-value {
        font-size: 11px;
    }

    .claim-button {
        width: 90%;
        padding: 14px;
        margin-top: 10px;
    }

    .card-back {
        padding: 16px;
    }

    .close-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }

    .casino-logo {
        width: 45px;
        height: 45px;
    }

    .back-casino-info h3 {
        font-size: 18px;
    }

    .footer {
        padding: 15px 15px;
        gap: 20px;
        margin-top: 40px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .age-verification-modal {
        margin: 15px;
        padding: 30px 20px;
    }

    .age-verification-title {
        font-size: 24px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-btn {
        min-width: 100%;
    }

    .mini-player {
        width: 280px;
        height: 180px;
        bottom: 15px;
        right: 15px;
    }

    .mini-player-header {
        padding: 8px 12px;
    }

    .mini-player-title {
        font-size: 11px;
    }

    .mini-control-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .mini-twitch-icon {
        font-size: 30px;
    }

    .login-modal-content {
        padding: 30px 20px;
        width: 90vw;
        margin: 20px;
    }
    
    .twitch-logo-big {
        font-size: 60px;
    }
    
    .user-name {
        display: none;
    }

    .simple-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 12px;
    }

    .logo {
        height: 45px;
    }

    .header-nav-item {
        font-size: 8px;
        padding: 4px 8px;
    }

    .content {
        padding: 15px 10px;
    }

    .content-title {
        font-size: 18px;
    }

    .offer-card {
        min-height: 330px;
        perspective: 600px !important;
    }

    .card-inner {
        transition: transform 0.5s ease !important;
    }

    .card-header {
        height: 110px;
        padding: 10px;
    }

    .card-content {
        padding: 14px;
    }

    .offer-title {
        font-size: 12px;
    }

    .detail-box {
        padding: 8px 6px;
    }

    .detail-label {
        font-size: 7px;
    }

    .detail-value {
        font-size: 10px;
    }

    .footer {
        padding: 12px 10px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .age-verification-modal {
        padding: 25px 15px;
    }

    .age-verification-title {
        font-size: 20px;
    }

    .mini-player {
        width: 250px;
        height: 160px;
        bottom: 10px;
        right: 10px;
    }
}

/* ====== FIX PARA BROWSERS ANTIGOS ====== */
@supports not (transform: rotateY(180deg)) {
    .offer-card.flipped .card-front {
        display: none;
    }
    
    .offer-card.flipped .card-back {
        display: block;
        transform: none !important;
    }
    
    .card-back {
        display: none;
    }
}

/* ====== FIX PARA SAFARI ====== */
@supports (-webkit-appearance: none) {
    .card-front,
    .card-back {
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
    }
    
    .card-inner {
        -webkit-transform-style: preserve-3d;
    }
}

/* ====== REDUCED MOTION SUPPORT ====== */
@media (prefers-reduced-motion: reduce) {
    .card-inner {
        transition: transform 0.3s ease !important;
    }
    
    .offer-card:hover {
        transform: none;
    }
    
    @keyframes cardFlipHighlight {
        0%, 100% {
            transform: none;
        }
        50% {
            transform: scale(1.01);
        }
    }
}
/* ===== File: clips.css ===== */
/* ========================================
   CLIPS PAGE STYLES - ORGANIZED VERSION
   ======================================== */

/* ====== BASE LAYOUT ====== */
.clips-page .main-container {
    min-height: 100vh;
    padding-top: 90px;
    padding-bottom: 40px;
}

.clips-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== HERO SECTION ====== */
.hero-section {
    margin-bottom: 50px;
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    padding: 40px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #2a4e83);
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* ====== STATS SECTION ====== */
.stats-section {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-header h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stats-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgb(75 0 130 / 52%);
    border: 1px solid rgba(75, 0, 130, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-card:hover {
    background: rgba(75, 0, 130, 0.2);
    border-color: rgba(129, 27, 82, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(129, 27, 82, 0.2);
}

.stat-icon {
    font-size: 32px;
    color: #811b52;
}

.stat-content {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====== FILTERS SECTION ====== */
.clips-filters {
    margin-bottom: 40px;
    animation: slideInDown 0.5s ease-out 0.2s both;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filters-header h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.filters-count {
    background: rgba(129, 27, 82, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.filters-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(129, 27, 82, 0.2);
    border: 1px solid rgba(129, 27, 82, 0.4);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    background: rgba(129, 27, 82, 0.4);
    border-color: rgba(129, 27, 82, 0.6);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #811b52, #4B0082);
    border-color: #811b52;
    color: white;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.3);
}

/* ====== CLIPS GRID ====== */
.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    animation: fadeIn 0.5s ease-in;
}

.clip-card {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.clip-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(129, 27, 82, 0.4);
    border-color: rgba(129, 27, 82, 0.6);
}

/* ====== CLIP THUMBNAIL ====== */
.clip-thumbnail {
    height: 220px;
    background: linear-gradient(135deg, #811b52, #4B0082)
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clip-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.clip-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(129, 27, 82, 0.1) 0%, 
        rgba(75, 0, 130, 0.1) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.play-button {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #811b52;
    font-size: 28px;
    transition: all 0.3s ease;
}

.clip-card:hover .play-button {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.clip-duration {
    bottom: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    z-index: 2;
}

.clip-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

/* ====== CLIP BADGES ====== */
.clip-badge.viral { 
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.clip-badge.popular { 
    background: linear-gradient(135deg, #4ecdc4, #44b2a8);
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

.clip-badge.long { 
    background: linear-gradient(135deg, #45b7d1, #3a9bc1);
    box-shadow: 0 2px 8px rgba(69, 183, 209, 0.3);
}

.clip-badge.recent { 
    background: linear-gradient(135deg, #96ceb4, #85b8a3);
    box-shadow: 0 2px 8px rgba(150, 206, 180, 0.3);
}

.clip-badge.regular { 
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    color: #333;
    box-shadow: 0 2px 8px rgba(255, 234, 167, 0.3);
}

/* ====== CLIP OVERLAY ====== */
.clip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clip-card:hover .clip-overlay {
    opacity: 1;
}

.clip-overlay h4 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

.clip-overlay p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

/* ====== CLIP INFO ====== */
.clip-info {
    padding: 25px;
    background: rgba(0, 0, 0, 0.05);
}

.clip-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
}

.clip-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.clip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.clip-meta > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ====== LOADING STATES ====== */
.loading-section {
    text-align: center;
    padding: 80px 20px;
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.spinner-icon {
    font-size: 64px;
    color: #811b52;
    animation: bounce 1.5s ease-in-out infinite;
}

.spinner-animation {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(129, 27, 82, 0.2);
    border-top: 4px solid #811b52;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#loadingTitle {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#loadingText {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
}

.loading-progress {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    height: 8px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #811b52, #4B0082);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.progress-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 10px;
}

/* ====== ERROR AND NO CLIPS STATES ====== */
.error-section, .no-clips-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.error-card, .no-clips-card {
    max-width: 500px;
    margin: 0 auto;
}

.error-icon, .no-clips-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.error-icon {
    color: #ff6b6b;
}

.no-clips-icon {
    color: #811b52;
}

.error-section h3, .no-clips-section h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.error-section p, .no-clips-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.error-actions, .no-clips-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.action-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
}

.action-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.4);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.error-help, .no-clips-reasons {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: left;
}

.error-help h4, .no-clips-reasons h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-help ul, .no-clips-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-help li, .no-clips-reasons li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.error-help li::before, .no-clips-reasons li::before {
    content: '•';
    color: #811b52;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ====== LOAD MORE SECTION ====== */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== LOGIN BUTTON FIXES ====== */
/* Botão login base (mantém estilos existentes) */
.login-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    min-width: 120px;
    justify-content: center;
    white-space: nowrap;
}

.login-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.4);
}

/* ====== ESTADO LOGADO - CORRIGIDO ====== */
.login-btn.logged-in {
    background: rgba(0, 39, 77, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    min-width: 160px;
    max-width: 200px;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
}

.login-btn.logged-in:hover {
    background: rgba(0, 39, 77, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Avatar do usuário */
.user-avatar {
    width: 28px;
    height: 28px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Nome do usuário */
.user-name {
    font-size: 13px;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
    flex: 1;
}

/* Ícone dropdown */
.login-btn.logged-in .fa-chevron-down {
    font-size: 10px;
    opacity: 0.7;
    margin-left: auto;
    flex-shrink: 0;
}

/* ====== DROPDOWN DO USUÁRIO ====== */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 39, 77, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.user-dropdown.show,
.login-btn.logged-in:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header do dropdown */
.dropdown-header {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-info {
}

.username {
    margin-bottom: 2px;
}

.user-email {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Divider */
.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 16px;
}

/* Item do dropdown */
.dropdown-item {
    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 12px 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-item i {
    width: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ====== NOTIFICAÇÃO MELHORADA ====== */
.simple-notification {
    background: rgba(0, 39, 77, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    gap: 10px;
    min-width: 300px;
}

.simple-notification.show {
}

.simple-notification.success {
    border-left: 4px solid #4ecdc4;
}

.simple-notification.error {
    border-left: 4px solid #ff6b6b;
}

.simple-notification.warning {
    border-left: 4px solid #ffeaa7;
}

.simple-notification.info {
    border-left: 4px solid #74b9ff;
}

/* ====== GARANTIR QUE O HEADER NÃO QUEBRE ====== */
.header {
    position: relative;
    z-index: 100;
    overflow: visible;
}

.header-nav {
    overflow: visible;
}

.header-right {
    overflow: visible;
    z-index: 100;
}

/* ====== ANIMAÇÕES ====== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
    }
    to {
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes userLoginSuccess {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.login-btn.logged-in.just-logged-in {
    animation: userLoginSuccess 0.6s ease-out;
}

/* ====== STAGGERED ANIMATIONS ====== */
.clips-container > * {
    animation: fadeInUp 0.4s ease-out;
}

.clips-container > *:nth-child(2) { animation-delay: 0.1s; }
.clips-container > *:nth-child(3) { animation-delay: 0.2s; }
.clips-container > *:nth-child(4) { animation-delay: 0.3s; }

/* ====== UTILITY CLASSES ====== */
.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.fade-out {
    animation: fadeOut 0.5s ease-out;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .clips-container {
        max-width: 1200px;
        padding: 0 25px;
    }
}

@media (max-width: 768px) {
    .clips-container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 32px;
    }

    .clips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filters-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .filters-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .error-actions, .no-clips-actions {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 200px;
        justify-content: center;
    }

    .loading-section {
        padding: 60px 15px;
        margin: 20px 0;
    }
    
    .spinner-icon {
        font-size: 48px;
    }
    
    .clip-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    /* Login button mobile fixes */
    .login-btn.logged-in {
        min-width: 140px;
        max-width: 160px;
        padding: 6px 10px;
    }
    
    .user-name {
        max-width: 80px;
        font-size: 12px;
    }
    
    .user-avatar {
    }
    
    .user-dropdown {
        min-width: 200px;
        right: -10px;
    }

    .header-right {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .filters-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        justify-content: center;
    }

    .clip-info {
        padding: 20px;
    }

    .load-more-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Login button small mobile fixes */
    .login-btn.logged-in {
        min-width: 120px;
        max-width: 140px;
    }
    
    .user-name {
        max-width: 60px;
        font-size: 11px;
    }
    
    .fa-chevron-down {
        display: none;
    }
}

/* ====== ACCESSIBILITY ====== */
.clip-card:focus,
.filter-btn:focus,
.action-btn:focus,
.load-more-btn:focus,
.login-btn:focus {
    outline: 2px solid #811b52;
    outline-offset: 2px;
}

/* ====== HIGH CONTRAST MODE ====== */
@media (prefers-contrast: high) {
    .clip-card {
        border: 2px solid #fff;
    }
    
    .filter-btn.active {
        background: #fff;
        color: #000;
    }
    
    .clip-badge {
        border: 1px solid #fff;
    }

    .login-btn.logged-in {
        border: 2px solid #fff;
    }
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .spinner-animation,
    .spinner-icon {
        animation: none;
    }
}

/* ====== PRINT STYLES ====== */
@media print {
    .clips-container {
        background: white;
        color: black;
    }
    
    .clip-card {
        border: 1px solid #000;
        background: white;
        break-inside: avoid;
    }
    
    .clips-filters,
    .load-more-section,
    .login-btn,
    .user-dropdown {
        display: none;
    }
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== AGE VERIFICATION ====== */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in;
}

.age-verification-wrapper {
    background: rgba(0, 39, 77, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255);
    padding: 1px;
    border-radius: 15px;
}

.age-verification-modal {
    background: linear-gradient(145deg, #4B0082, #00274D);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.age-verification-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-verification-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.3;
}

.age-verification-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 170px;
    border: none;
}

.age-btn-enter {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.4);
}

.age-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.5);
}

.age-btn-exit {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.age-btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.age-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-content {
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.page-content.unblurred {
    filter: none;
}

/* ====== COMING SOON PAGES ====== */
.community-container, .mini-game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-card {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 40px;
}

.coming-soon-icon {
    font-size: 80px;
    color: #811b52;
    margin-bottom: 30px;
    opacity: 0.8;
}

.coming-soon-card h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.notify-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

/* ====== LOGIN MODAL E NOTIFICAÇÕES - CORRIGIDO ====== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: linear-gradient(135deg, #2f202e, #4B0082);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.login-modal.show .login-modal-content {
    transform: translateY(0);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.login-content {
    text-align: center;
}

.twitch-logo-big {
    font-size: 48px;
    color: #9146ff;
    margin-bottom: 20px;
}

.login-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.login-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.twitch-login-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
}

.twitch-login-btn:hover {
    background: linear-gradient(135deg, #772ce8, #9146ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

.twitch-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-benefits {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-benefits h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.login-benefits li i {
    color: #4ecdc4;
    font-size: 12px;
}

.login-btn.logged-in {
    background: linear-gradient(135deg, #811b52, #4B0082);
    padding: 8px 15px;
    min-width: 150px;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    font-size: 14px;
    font-weight: 600;
}

.user-dropdown {
    z-index: 1000;
}

.simple-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.simple-notification.success {
    background: linear-gradient(135deg, #811b52, #4B0082)
}

.simple-notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.simple-notification.info {
    background: linear-gradient(135deg, #2196F3, #1976d2);
}

.simple-notification.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.simple-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.login-modal:not(.show) {
    display: none !important;
}

.login-modal.show + * {
    pointer-events: none;
}

.login-modal.show .login-modal-content {
    pointer-events: all;
}

.login-modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.login-modal.closing .login-modal-content {
    animation: modalSlideOut 0.3s ease forwards;
}

@keyframes modalSlideOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.9);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 800px;
        gap: 18px;
    }
    
    .offer-card {
        height: 360px;
    }
    
    .header-nav-section {
        gap: 15px;
    }

    .header-nav-item {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo {
        height: 50px;
    }

    .live-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .header-center {
        width: 100%;
        margin: 0;
        gap: 30px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .header-center::-webkit-scrollbar {
        display: none;
    }

    .header-nav-section:not(:last-child)::after {
        right: -15px;
        height: 20px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    }

    .header-nav-section {
        gap: 12px;
        min-width: max-content;
    }

    .header-nav-item {
        font-size: 9px;
        border-radius: 8px;
        min-width: max-content;
    }

    .header-new-badge {
        font-size: 6px;
        margin-left: 4px;
    }

    .header-right {
        gap: 15px;
    }

    .header-icon {
        font-size: 16px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .main-container {
        min-height: calc(100vh - 140px);
        padding-top: 140px;
    }

    .content {
        padding: 20px 15px;
    }

    .content-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 20px;
        max-width: 100%;
    }

    .offer-card {
        height: auto;
        min-height: 350px;
        aspect-ratio: unset;
        perspective: 800px !important;
    }

    .card-inner {
        transition: transform 0.6s ease !important;
    }

    .card-header {
        height: 120px;
    }

    .casino-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .show-more-btn {
        font-size: 9px !important;
        padding: 5px 10px !important;
    }

    .header-icons .mb-way-badge {
        font-size: 8px;
        padding: 2px 5px;
    }

    .crypto-icon, .shield-icon {
        font-size: 10px;
    }

    .card-content {
        padding: 16px;
    }

    .offer-title {
        font-size: 13px;
        margin-bottom: 12px;
        min-height: auto;
    }

    .boxes-row.top {
        grid-template-columns: 1fr 1fr;
    }

    .boxes-row.bottom {
        grid-template-columns: 1fr;
    }

    .detail-box {
        padding: 10px 8px;
        min-height: 50px;
    }

    .detail-label {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .detail-value {
        font-size: 11px;
    }

    .claim-button {
        width: 90%;
        padding: 14px;
        margin-top: 10px;
    }

    .card-back {
        padding: 16px;
    }

    .close-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }

    .casino-logo {
        width: 45px;
        height: 45px;
    }

    .back-casino-info h3 {
        font-size: 18px;
    }

    .footer {
        padding: 15px 15px;
        gap: 20px;
        margin-top: 40px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .age-verification-modal {
        margin: 15px;
        padding: 30px 20px;
    }

    .age-verification-title {
        font-size: 24px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-btn {
        min-width: 100%;
    }

    .mini-player {
        width: 280px;
        height: 180px;
        bottom: 15px;
        right: 15px;
    }

    .mini-player-header {
        padding: 8px 12px;
    }

    .mini-player-title {
        font-size: 11px;
    }

    .mini-control-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .mini-twitch-icon {
        font-size: 30px;
    }

    .login-modal-content {
        padding: 30px 20px;
        width: 90vw;
        margin: 20px;
    }
    
    .twitch-logo-big {
        font-size: 60px;
    }
    
    .user-name {
        display: none;
    }

    .simple-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 12px;
    }

    .logo {
        height: 45px;
    }

    .header-nav-item {
        font-size: 8px;
        padding: 4px 8px;
    }

    .content {
        padding: 15px 10px;
    }

    .content-title {
        font-size: 18px;
    }

    .offer-card {
        min-height: 330px;
        perspective: 600px !important;
    }

    .card-inner {
        transition: transform 0.5s ease !important;
    }

    .card-header {
        height: 110px;
        padding: 10px;
    }

    .card-content {
        padding: 14px;
    }

    .offer-title {
        font-size: 12px;
    }

    .detail-box {
        padding: 8px 6px;
    }

    .detail-label {
        font-size: 7px;
    }

    .detail-value {
        font-size: 10px;
    }

    .footer {
        padding: 12px 10px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .age-verification-modal {
        padding: 25px 15px;
    }

    .age-verification-title {
        font-size: 20px;
    }

    .mini-player {
        width: 250px;
        height: 160px;
        bottom: 10px;
        right: 10px;
    }
}

/* ====== FIX PARA BROWSERS ANTIGOS ====== */
@supports not (transform: rotateY(180deg)) {
    .offer-card.flipped .card-front {
        display: none;
    }
    
    .offer-card.flipped .card-back {
        display: block;
        transform: none !important;
    }
    
    .card-back {
        display: none;
    }
}

/* ====== FIX PARA SAFARI ====== */
@supports (-webkit-appearance: none) {
    .card-front,
    .card-back {
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
    }
    
    .card-inner {
        -webkit-transform-style: preserve-3d;
    }
}

/* ====== REDUCED MOTION SUPPORT ====== */
@media (prefers-reduced-motion: reduce) {
    .card-inner {
        transition: transform 0.3s ease !important;
    }
    
    .offer-card:hover {
        transform: none;
    }
    
    @keyframes cardFlipHighlight {
        0%, 100% {
            transform: none;
        }
        50% {
            transform: scale(1.01);
        }
    }
}


/* ===== File: contact-me.css ===== */
/* ====== CONTACT ME PAGE STYLES ====== */
.contact-me-page .main-container {
    min-height: 100vh;
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 800px;
    width: 100%;
    margin: 40px 20px;
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.page-title {
    font-size: 36px;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    background: rgba(129, 27, 82, 0.1);
    border: 1px solid rgba(129, 27, 82, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    background: rgba(129, 27, 82, 0.2);
    border-color: rgba(129, 27, 82, 0.5);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #811b52;
}

.contact-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
}

.contact-form {
    background: rgba(75, 0, 130, 0.1);
    border: 1px solid rgba(75, 0, 130, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    background: rgba(0, 39, 77, 0.3);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #811b52;
    background: rgba(0, 39, 77, 0.5);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.5);
}

.social-links {
    margin-top: 40px;
}

.social-link {
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-container {
        margin: 20px 15px;
        padding: 30px 20px;
    }

    .page-title {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-method {
        padding: 20px;
    }

    .contact-icon {
        font-size: 36px;
    }

    .contact-title {
        font-size: 20px;
    }

    .form-title {
        font-size: 20px;
    }
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== AGE VERIFICATION ====== */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in;
}

.age-verification-wrapper {
    background: rgba(0, 39, 77, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255);
    padding: 1px;
    border-radius: 15px;
}

.age-verification-modal {
    background: linear-gradient(145deg, #4B0082, #00274D);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.age-verification-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-verification-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.3;
}

.age-verification-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 170px;
    border: none;
}

.age-btn-enter {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.4);
}

.age-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.5);
}

.age-btn-exit {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.age-btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.age-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-content {
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.page-content.unblurred {
    filter: none;
}

/* ====== COMING SOON PAGES ====== */
.community-container, .mini-game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-card {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 40px;
}

.coming-soon-icon {
    font-size: 80px;
    color: #811b52;
    margin-bottom: 30px;
    opacity: 0.8;
}

.coming-soon-card h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.notify-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

/* ====== LOGIN MODAL E NOTIFICAÇÕES - CORRIGIDO ====== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: linear-gradient(135deg, #2f202e, #4B0082);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.login-modal.show .login-modal-content {
    transform: translateY(0);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.login-content {
    text-align: center;
}

.twitch-logo-big {
    font-size: 48px;
    color: #9146ff;
    margin-bottom: 20px;
}

.login-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.login-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.twitch-login-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
}

.twitch-login-btn:hover {
    background: linear-gradient(135deg, #772ce8, #9146ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

.twitch-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-benefits {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-benefits h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.login-benefits li i {
    color: #4ecdc4;
    font-size: 12px;
}

.login-btn.logged-in {
    background: linear-gradient(135deg, #811b52, #4B0082)
    padding: 8px 15px;
    min-width: 150px;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    font-size: 14px;
    font-weight: 600;
}

.user-dropdown {
    z-index: 1000;
}

.simple-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.simple-notification.success {
    background: linear-gradient(135deg, #811b52, #4B0082)
}

.simple-notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.simple-notification.info {
    background: linear-gradient(135deg, #2196F3, #1976d2);
}

.simple-notification.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.simple-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.login-modal:not(.show) {
    display: none !important;
}

.login-modal.show + * {
    pointer-events: none;
}

.login-modal.show .login-modal-content {
    pointer-events: all;
}

.login-modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.login-modal.closing .login-modal-content {
    animation: modalSlideOut 0.3s ease forwards;
}

@keyframes modalSlideOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.9);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 800px;
        gap: 18px;
    }
    
    .offer-card {
        height: 360px;
    }
    
    .header-nav-section {
        gap: 15px;
    }

    .header-nav-item {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo {
        height: 50px;
    }

    .live-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .header-center {
        width: 100%;
        margin: 0;
        gap: 30px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .header-center::-webkit-scrollbar {
        display: none;
    }

    .header-nav-section:not(:last-child)::after {
        right: -15px;
        height: 20px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    }

    .header-nav-section {
        gap: 12px;
        min-width: max-content;
    }

    .header-nav-item {
        font-size: 9px;
        border-radius: 8px;
        min-width: max-content;
    }

    .header-new-badge {
        font-size: 6px;
        margin-left: 4px;
    }

    .header-right {
        gap: 15px;
    }

    .header-icon {
        font-size: 16px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .main-container {
        min-height: calc(100vh - 140px);
        padding-top: 140px;
    }

    .content {
        padding: 20px 15px;
    }

    .content-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 20px;
        max-width: 100%;
    }

    .offer-card {
        height: auto;
        min-height: 350px;
        aspect-ratio: unset;
        perspective: 800px !important;
    }

    .card-inner {
        transition: transform 0.6s ease !important;
    }

    .card-header {
        height: 120px;
    }

    .casino-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .show-more-btn {
        font-size: 9px !important;
        padding: 5px 10px !important;
    }

    .header-icons .mb-way-badge {
        font-size: 8px;
        padding: 2px 5px;
    }

    .crypto-icon, .shield-icon {
        font-size: 10px;
    }

    .card-content {
        padding: 16px;
    }

    .offer-title {
        font-size: 13px;
        margin-bottom: 12px;
        min-height: auto;
    }

    .boxes-row.top {
        grid-template-columns: 1fr 1fr;
    }

    .boxes-row.bottom {
        grid-template-columns: 1fr;
    }

    .detail-box {
        padding: 10px 8px;
        min-height: 50px;
    }

    .detail-label {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .detail-value {
        font-size: 11px;
    }

    .claim-button {
        width: 90%;
        padding: 14px;
        margin-top: 10px;
    }

    .card-back {
        padding: 16px;
    }

    .close-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }

    .casino-logo {
        width: 45px;
        height: 45px;
    }

    .back-casino-info h3 {
        font-size: 18px;
    }

    .footer {
        padding: 15px 15px;
        gap: 20px;
        margin-top: 40px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .age-verification-modal {
        margin: 15px;
        padding: 30px 20px;
    }

    .age-verification-title {
        font-size: 24px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-btn {
        min-width: 100%;
    }

    .mini-player {
        width: 280px;
        height: 180px;
        bottom: 15px;
        right: 15px;
    }

    .mini-player-header {
        padding: 8px 12px;
    }

    .mini-player-title {
        font-size: 11px;
    }

    .mini-control-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .mini-twitch-icon {
        font-size: 30px;
    }

    .login-modal-content {
        padding: 30px 20px;
        width: 90vw;
        margin: 20px;
    }
    
    .twitch-logo-big {
        font-size: 60px;
    }
    
    .user-name {
        display: none;
    }

    .simple-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 12px;
    }

    .logo {
        height: 45px;
    }

    .header-nav-item {
        font-size: 8px;
        padding: 4px 8px;
    }

    .content {
        padding: 15px 10px;
    }

    .content-title {
        font-size: 18px;
    }

    .offer-card {
        min-height: 330px;
        perspective: 600px !important;
    }

    .card-inner {
        transition: transform 0.5s ease !important;
    }

    .card-header {
        height: 110px;
        padding: 10px;
    }

    .card-content {
        padding: 14px;
    }

    .offer-title {
        font-size: 12px;
    }

    .detail-box {
        padding: 8px 6px;
    }

    .detail-label {
        font-size: 7px;
    }

    .detail-value {
        font-size: 10px;
    }

    .footer {
        padding: 12px 10px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .age-verification-modal {
        padding: 25px 15px;
    }

    .age-verification-title {
        font-size: 20px;
    }

    .mini-player {
        width: 250px;
        height: 160px;
        bottom: 10px;
        right: 10px;
    }
}

/* ====== FIX PARA BROWSERS ANTIGOS ====== */
@supports not (transform: rotateY(180deg)) {
    .offer-card.flipped .card-front {
        display: none;
    }
    
    .offer-card.flipped .card-back {
        display: block;
        transform: none !important;
    }
    
    .card-back {
        display: none;
    }
}

/* ====== FIX PARA SAFARI ====== */
@supports (-webkit-appearance: none) {
    .card-front,
    .card-back {
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
    }
    
    .card-inner {
        -webkit-transform-style: preserve-3d;
    }
}

/* ====== REDUCED MOTION SUPPORT ====== */
@media (prefers-reduced-motion: reduce) {
    .card-inner {
        transition: transform 0.3s ease !important;
    }
    
    .offer-card:hover {
        transform: none;
    }
    
    @keyframes cardFlipHighlight {
        0%, 100% {
            transform: none;
        }
        50% {
            transform: scale(1.01);
        }
    }
}


/* ===== File: twitch-live.css ===== */
/* ====== PÁGINA TWITCH LIVE - CSS COMPLETO ATUALIZADO ====== */

/* ====== CONFIGURAÇÕES BASE ====== */
.twitch-live-page .main-container {
    min-height: 100vh;
    padding-top: 90px;
    padding-bottom: 0px;
}

.twitch-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== HEADER DO STATUS LIVE ====== */
.live-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 39, 77, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.channel-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9146ff, #6441a4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.channel-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.channel-name {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.channel-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.channel-stats i {
    margin-right: 5px;
    color: #811b52;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

.live-indicator-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.live-indicator.live {
    background: linear-gradient(135deg, #ff0000, #ff4757);
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

/* ====== ÁREA DE CONTEÚDO PRINCIPAL ====== */
.main-content-area {
    margin-bottom: 40px;
}

/* ====== LAYOUT LIVE ====== */
.live-content-layout {
    display: grid;
    grid-template-columns: 2fr 350px;
    gap: 30px;
}

/* ====== SEÇÃO DO STREAM ====== */
.stream-section {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.stream-header {
    margin-bottom: 20px;
}

.stream-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.stream-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.stream-category i {
    color: #811b52;
}

.stream-player-container {
    position: relative;
}

.stream-player {
    width: 100%;
    height: 450px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.stream-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(129, 27, 82, 0.1);
    border-radius: 15px;
}

.control-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.control-button:hover {
    background: rgba(129, 27, 82, 0.3);
    border-color: rgba(129, 27, 82, 0.5);
    transform: translateY(-2px);
}

/* ====== SEÇÃO DO CHAT ====== */
.chat-section {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    height: 700px;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid rgba(129, 27, 82, 0.3);
}

.chat-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.chat-viewer-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
}

.chat-messages {
    flex: 1;
    padding: 15px 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(129, 27, 82, 0.5) transparent;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(129, 27, 82, 0.5);
    border-radius: 3px;
}

.chat-message {
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    animation: slideInChat 0.3s ease-out;
    border-left: 3px solid rgba(129, 27, 82, 0.6);
}

@keyframes slideInChat {
    from { 
        opacity: 0; 
        transform: translateX(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.chat-username {
    font-weight: bold;
    color: #9146ff;
    margin-right: 8px;
    font-size: 13px;
}

.chat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.4;
}

.chat-input-area {
    padding: 15px 20px;
    border-top: 1px solid rgba(129, 27, 82, 0.3);
}

.login-to-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(129, 27, 82, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* ====== CONTEÚDO OFFLINE ====== */
.offline-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.channel-banner {
    height: 620px;
    background: url('https://4ferreira.com/images/offline.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.offline-message {
    text-align: center;
    color: white;
}

.offline-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.offline-message h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.offline-message p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.offline-actions-section {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.action-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(129, 27, 82, 0.5);
    transform: translateY(-5px);
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: white;
}

.twitch-color { background: linear-gradient(135deg, #9146ff, #6441a4); }
.clips-color { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
.notification-color { background: linear-gradient(135deg, #4ecdc4, #44a08d); }

.action-card h3 {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.action-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

/* ====== ATIVIDADE RECENTE ====== */
.recent-activity {
    background: rgba(75, 0, 130, 0.1);
    border: 1px solid rgba(75, 0, 130, 0.3);
    border-radius: 20px;
    padding: 25px;
}

.recent-activity h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.activity-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 40px 20px;
}

.recent-clips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.recent-clip {
    background: rgba(0, 39, 77, 0.5);
    border: 1px solid rgba(129, 27, 82, 0.3);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recent-clip:hover {
    background: rgba(129, 27, 82, 0.2);
    border-color: rgba(129, 27, 82, 0.5);
    transform: translateY(-3px);
}

.clip-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.clip-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clip-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 20px;
}

.recent-clip:hover .play-overlay {
    opacity: 1;
}

.clip-info {
    padding: 12px;
}

.clip-info h4 {
    color: white;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clip-stats {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.view-all-clips {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #9146ff, #6441a4);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.3);
}

.no-recent-activity, .activity-error {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.no-recent-activity i, .activity-error i {
    font-size: 32px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.visit-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #9146ff, #6441a4);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.visit-channel-btn:hover {
    transform: translateY(-2px);
}

/* ====== SEÇÕES GERAIS ====== */
.schedule-section, .social-section, .vods-section {
    background: rgba(129, 27, 82, 0.1);
    border: 1px solid rgba(129, 27, 82, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 25px 0;
}

.section-header {
    margin-bottom: 25px;
    text-align: center;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 5px 0 0 0;
}

/* ====== SEÇÃO DE VODS ====== */
.vods-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.vods-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 40px 20px;
}

.vod-card {
    background: rgba(0, 39, 77, 0.5);
    border: 1px solid rgba(129, 27, 82, 0.3);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vod-card:hover {
    background: rgba(129, 27, 82, 0.2);
    border-color: rgba(129, 27, 82, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.vod-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.vod-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vod-card:hover .vod-thumbnail img {
    transform: scale(1.05);
}

.vod-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
}

.vod-views {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
}

.vod-card .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 24px;
}

.vod-card:hover .play-overlay {
    opacity: 1;
}

.vod-info {
    padding: 15px;
}

.vod-title {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vod-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.vod-date {
    font-weight: 500;
}

.vod-type {
    background: rgba(129, 27, 82, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
}

.empty-vods, .error-vods {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.empty-icon, .error-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-vods h3, .error-vods h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.empty-vods p, .error-vods p {
    margin-bottom: 25px;
    line-height: 1.5;
}

.retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #9146ff, #6441a4);
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.3);
}

/* ====== GRADE DE HORÁRIOS ====== */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.schedule-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 40px 20px;
}

.schedule-day {
    background: rgba(0, 39, 77, 0.5);
    border: 1px solid rgba(129, 27, 82, 0.3);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.schedule-day:hover {
    background: rgba(129, 27, 82, 0.2);
    border-color: rgba(129, 27, 82, 0.5);
    transform: translateY(-3px);
}

.schedule-day.today {
    background: rgba(129, 27, 82, 0.3);
    border-color: rgba(129, 27, 82, 0.6);
    box-shadow: 0 0 20px rgba(129, 27, 82, 0.3);
}

.day-info {
    text-align: center;
    margin-bottom: 10px;
}

.day-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.day-time {
    color: white;
    font-size: 13px;
    font-weight: bold;
}

.day-frequency {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin-top: 3px;
}

.recent-stream-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    margin-top: 8px;
    text-align: center;
}

.day-status {
    display: block;
    text-align: center;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: bold;
}

.status-live {
    background: linear-gradient(135deg, #ff0000, #ff4757);
    color: white;
}

.status-scheduled {
    background: rgba(75, 0, 130, 0.8);
    color: white;
}

.status-regular {
    background: rgba(76, 175, 80, 0.8);
    color: white;
}

.status-occasional {
    background: rgb(7 173 255 / 44%);
    color: black;
}

.status-rare {
    background: rgba(255, 87, 34, 0.8);
    color: white;
}

.status-no-streams {
    background: rgba(158, 158, 158, 0.8);
    color: white;
}

.status-no-data {
    background: rgba(96, 125, 139, 0.8);
    color: white;
}

.status-error {
    background: rgba(244, 67, 54, 0.8);
    color: white;
}

/* ====== ÍCONES SOCIAIS APENAS (ATUALIZADO) ====== */
.social-icons-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px 0;
}

/* Estilo base dos ícones */
.social-icon-link {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Efeito hover base */
.social-icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon-link:hover::before {
    opacity: 1;
}

.social-icon-link:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Cores específicas - TWITCH */
.social-icon-link.twitch {
    background: linear-gradient(135deg, #9146ff, #6441a4);
}

.social-icon-link.twitch:hover {
    background: linear-gradient(135deg, #a970ff, #7565b8);
    box-shadow: 
        0 15px 35px rgba(145, 70, 255, 0.5),
        0 0 25px rgba(145, 70, 255, 0.3);
}

/* Cores específicas - DISCORD */
.social-icon-link.discord {
    background: linear-gradient(135deg, #7289da, #5865f2);
}

.social-icon-link.discord:hover {
    background: linear-gradient(135deg, #8ea1e1, #6f7ef5);
    box-shadow: 
        0 15px 35px rgba(114, 137, 218, 0.5),
        0 0 25px rgba(114, 137, 218, 0.3);
}

/* Cores específicas - INSTAGRAM */
.social-icon-link.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.social-icon-link.instagram:hover {
    background: linear-gradient(135deg, #f0507a, #d1439e, #9d4ed8);
    box-shadow: 
        0 15px 35px rgba(228, 64, 95, 0.5),
        0 0 25px rgba(228, 64, 95, 0.3);
}

/* Animações específicas no hover */
.social-icon-link.twitch:hover i {
    animation: twitch-pulse 0.6s ease-in-out;
}

.social-icon-link.discord:hover i {
    animation: discord-shake 0.5s ease-in-out;
}

.social-icon-link.instagram:hover i {
    animation: instagram-rotate 0.8s ease-in-out;
}

/* Keyframes das animações */
@keyframes twitch-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes discord-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

@keyframes instagram-rotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

/* Efeito de clique */
.social-icon-link:active {
    transform: scale(0.9);
    transition: transform 0.1s ease;
}

/* Efeito adicional de partículas */
.social-icon-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
}

.social-icon-link:hover::after {
    width: 120%;
    height: 120%;
    opacity: 0;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 1200px) {
    .live-content-layout {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }
    
    .stream-player {
        height: 400px;
    }
    
    .chat-section {
        height: 480px;
    }
    
    .vods-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 968px) {
    .live-status-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .live-content-layout {
        grid-template-columns: 1fr;
    }
    
    .chat-section {
        height: 300px;
    }
    
    .action-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .recent-clips {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .vods-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .twitch-container {
        padding: 0 15px;
    }
    
    .live-status-header {
        padding: 20px;
    }
    
    .channel-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .stream-player {
        height: 250px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .schedule-day {
        align-items: center;
        text-align: left;
        min-height: auto;
        flex-direction: row;
    }
    
    /* Responsividade dos ícones sociais */
    .social-icons-grid {
        gap: 20px;
    }
    
    .social-icon-link {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .social-icon-link:hover {
        transform: translateY(-6px) scale(1.1);
    }
    
    .vods-container {
        grid-template-columns: 1fr;
    }
    
    .vod-thumbnail {
        height: 200px;
    }
    
    .vods-section, .schedule-section, .social-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .live-status-header {
        padding: 15px;
    }
    
    .channel-name {
        font-size: 20px;
    }
    
    .stream-section {
        padding: 20px;
    }
    
    .stream-player {
        height: 200px;
    }
    
    .vod-thumbnail {
    }
    
    .vod-info {
        padding: 12px;
    }
    
    .vod-title {
        font-size: 13px;
    }
    
    .schedule-section, .social-section, .vods-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .control-button {
        width: 100%;
        justify-content: center;
    }
    
    /* Responsividade mobile dos ícones sociais */
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-icon-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .social-icon-link:hover {
        transform: translateY(-4px) scale(1.05);
    }
}

/* Estilos para chat real */
.twitch-chat-iframe {
    border-radius: 8px;
    background: #0f0f23;
    min-height: 300px;
}

.real-chat-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(145, 70, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    border: 1px solid rgba(145, 70, 255, 0.3);
}

.chat-offline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.chat-offline-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.chat-offline h3 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.chat-offline p {
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.visit-twitch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #9146ff, #6441a4);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.visit-twitch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.3);
}

.login-to-chat.offline {
    background: rgba(158, 158, 158, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsividade para chat real */
@media (max-width: 968px) {
    .twitch-chat-iframe {
        min-height: 250px;
    }
    
    .chat-offline {
        padding: 20px 15px;
    }
    
    .chat-offline-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .twitch-chat-iframe {
        min-height: 200px;
    }
    
    .real-chat-info {
        font-size: 12px;
        padding: 10px;
    }
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== AGE VERIFICATION ====== */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in;
}

.age-verification-wrapper {
    background: rgba(0, 39, 77, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255);
    padding: 1px;
    border-radius: 15px;
}

.age-verification-modal {
    background: linear-gradient(145deg, #4B0082, #00274D);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.age-verification-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-verification-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.3;
}

.age-verification-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 170px;
    border: none;
}

.age-btn-enter {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.4);
}

.age-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.5);
}

.age-btn-exit {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.age-btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.age-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-content {
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.page-content.unblurred {
    filter: none;
}

/* ====== COMING SOON PAGES ====== */
.community-container, .mini-game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-card {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 40px;
}

.coming-soon-icon {
    font-size: 80px;
    color: #811b52;
    margin-bottom: 30px;
    opacity: 0.8;
}

.coming-soon-card h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.notify-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

/* ====== LOGIN MODAL E NOTIFICAÇÕES - CORRIGIDO ====== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: linear-gradient(135deg, #2f202e, #4B0082);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.login-modal.show .login-modal-content {
    transform: translateY(0);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.login-content {
    text-align: center;
}

.twitch-logo-big {
    font-size: 48px;
    color: #9146ff;
    margin-bottom: 20px;
}

.login-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.login-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.twitch-login-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
}

.twitch-login-btn:hover {
    background: linear-gradient(135deg, #772ce8, #9146ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

.twitch-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-benefits {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-benefits h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.login-benefits li i {
    color: #4ecdc4;
    font-size: 12px;
}

.login-btn.logged-in {
    background: linear-gradient(135deg, #811b52, #4B0082)
    padding: 8px 15px;
    min-width: 150px;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    font-size: 14px;
    font-weight: 600;
}

.user-dropdown {
    z-index: 1000;
}

.simple-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.simple-notification.success {
    background: linear-gradient(135deg, #811b52, #4B0082)
}

.simple-notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.simple-notification.info {
    background: linear-gradient(135deg, #2196F3, #1976d2);
}

.simple-notification.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.simple-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.login-modal:not(.show) {
    display: none !important;
}

.login-modal.show + * {
    pointer-events: none;
}

.login-modal.show .login-modal-content {
    pointer-events: all;
}

.login-modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.login-modal.closing .login-modal-content {
    animation: modalSlideOut 0.3s ease forwards;
}

@keyframes modalSlideOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.9);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 800px;
        gap: 18px;
    }
    
    .offer-card {
        height: 360px;
    }
    
    .header-nav-section {
        gap: 15px;
    }

    .header-nav-item {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo {
        height: 50px;
    }

    .live-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .header-center {
        width: 100%;
        margin: 0;
        gap: 30px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .header-center::-webkit-scrollbar {
        display: none;
    }

    .header-nav-section:not(:last-child)::after {
        right: -15px;
        height: 20px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    }

    .header-nav-section {
        gap: 12px;
        min-width: max-content;
    }

    .header-nav-item {
        font-size: 9px;
        border-radius: 8px;
        min-width: max-content;
    }

    .header-new-badge {
        font-size: 6px;
        margin-left: 4px;
    }

    .header-right {
        gap: 15px;
    }

    .header-icon {
        font-size: 16px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .main-container {
        min-height: calc(100vh - 140px);
        padding-top: 140px;
    }

    .content {
        padding: 20px 15px;
    }

    .content-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 20px;
        max-width: 100%;
    }

    .offer-card {
        height: auto;
        min-height: 350px;
        aspect-ratio: unset;
        perspective: 800px !important;
    }

    .card-inner {
        transition: transform 0.6s ease !important;
    }

    .card-header {
        height: 120px;
    }

    .casino-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .show-more-btn {
        font-size: 9px !important;
        padding: 5px 10px !important;
    }

    .header-icons .mb-way-badge {
        font-size: 8px;
        padding: 2px 5px;
    }

    .crypto-icon, .shield-icon {
        font-size: 10px;
    }

    .card-content {
        padding: 16px;
    }

    .offer-title {
        font-size: 13px;
        margin-bottom: 12px;
        min-height: auto;
    }

    .boxes-row.top {
        grid-template-columns: 1fr 1fr;
    }

    .boxes-row.bottom {
        grid-template-columns: 1fr;
    }

    .detail-box {
        padding: 10px 8px;
        min-height: 50px;
    }

    .detail-label {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .detail-value {
        font-size: 11px;
    }

    .claim-button {
        width: 90%;
        padding: 14px;
        margin-top: 10px;
    }

    .card-back {
        padding: 16px;
    }

    .close-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }

    .casino-logo {
        width: 45px;
        height: 45px;
    }

    .back-casino-info h3 {
        font-size: 18px;
    }

    .footer {
        padding: 15px 15px;
        gap: 20px;
        margin-top: 40px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .age-verification-modal {
        margin: 15px;
        padding: 30px 20px;
    }

    .age-verification-title {
        font-size: 24px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-btn {
        min-width: 100%;
    }

    .mini-player {
        width: 280px;
        height: 180px;
        bottom: 15px;
        right: 15px;
    }

    .mini-player-header {
        padding: 8px 12px;
    }

    .mini-player-title {
        font-size: 11px;
    }

    .mini-control-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .mini-twitch-icon {
        font-size: 30px;
    }

    .login-modal-content {
        padding: 30px 20px;
        width: 90vw;
        margin: 20px;
    }
    
    .twitch-logo-big {
        font-size: 60px;
    }
    
    .user-name {
        display: none;
    }

    .simple-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 12px;
    }

    .logo {
        height: 45px;
    }

    .header-nav-item {
        font-size: 8px;
        padding: 4px 8px;
    }

    .content {
        padding: 15px 10px;
    }

    .content-title {
        font-size: 18px;
    }

    .offer-card {
        min-height: 330px;
        perspective: 600px !important;
    }

    .card-inner {
        transition: transform 0.5s ease !important;
    }

    .card-header {
        height: 110px;
        padding: 10px;
    }

    .card-content {
        padding: 14px;
    }

    .offer-title {
        font-size: 12px;
    }

    .detail-box {
        padding: 8px 6px;
    }

    .detail-label {
        font-size: 7px;
    }

    .detail-value {
        font-size: 10px;
    }

    .footer {
        padding: 12px 10px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .age-verification-modal {
        padding: 25px 15px;
    }

    .age-verification-title {
        font-size: 20px;
    }

    .mini-player {
        width: 250px;
        height: 160px;
        bottom: 10px;
        right: 10px;
    }
}

/* ====== FIX PARA BROWSERS ANTIGOS ====== */
@supports not (transform: rotateY(180deg)) {
    .offer-card.flipped .card-front {
        display: none;
    }
    
    .offer-card.flipped .card-back {
        display: block;
        transform: none !important;
    }
    
    .card-back {
        display: none;
    }
}

/* ====== FIX PARA SAFARI ====== */
@supports (-webkit-appearance: none) {
    .card-front,
    .card-back {
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
    }
    
    .card-inner {
        -webkit-transform-style: preserve-3d;
    }
}

/* ====== REDUCED MOTION SUPPORT ====== */
@media (prefers-reduced-motion: reduce) {
    .card-inner {
        transition: transform 0.3s ease !important;
    }
    
    .offer-card:hover {
        transform: none;
    }
    
    @keyframes cardFlipHighlight {
        0%, 100% {
            transform: none;
        }
        50% {
            transform: scale(1.01);
        }
    }
}
/* ===== File: shop.css ===== */
/* ====== SHOP PAGE STYLES - FIXED VERSION ====== */
.shop-page .main-container {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 0px;
}

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 25px;
    background: linear-gradient(135deg, rgba(129, 27, 82, 0.3), rgba(75, 0, 130, 0.3));
    border-radius: 20px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(129, 27, 82, 0.2);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.page-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
    font-weight: 400;
}

/* ====== SHOP GRID - CARDS COMPACTAS ====== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

/* ====== SHOP CARDS - ULTRA COMPACTAS ====== */
.shop-card {
    background: rgba(0, 20, 40, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(129, 27, 82, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    height: 200px;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.3);
    border-color: rgba(129, 27, 82, 0.4);
}

/* ====== CARD HEADERS ====== */
.shop-card-header {
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    z-index: 1;
}

.shop-card-header.merchandise::before {
    background: linear-gradient(135deg, #FF6B6B, #EE5A52);
}

.shop-card-header.digital::before {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.shop-card-header.vip::before {
    background: linear-gradient(135deg, #FFD93D, #FFAB00);
}

.shop-card-header.gaming::before {
    background: linear-gradient(135deg, #9146FF, #6441A4);
}

.shop-card-header.exclusive::before {
    background: linear-gradient(135deg, #811b52, #4B0082);
}

.shop-card-header.collectibles::before {
    background: linear-gradient(135deg, #FF8A65, #FF7043);
}

.shop-card-icon {
    position: relative;
    z-index: 2;
    font-size: 32px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ====== CARD BADGES - MELHORADOS ====== */
.shop-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: glow 2s ease-in-out infinite alternate;
}

.shop-badge.coming-soon {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes glow {
    from {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        opacity: 0.8;
    }
    to {
        box-shadow: 0 2px 15px rgba(255, 255, 255, 0.4);
        opacity: 1;
    }
}

/* ====== CARD CONTENT - SIMPLIFICADO ====== */
.shop-card-content {
    padding: 20px 15px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
}

.shop-card-title {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.shop-card-description {
    display: none; /* Ocultar descrição */
}

.shop-card-features {
    display: none; /* Ocultar features */
}

/* ====== SHOP BUTTONS - SIMPLIFICADOS ====== */
.shop-btn {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.shop-btn.disabled {
    background: rgba(100, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    border: 1px solid rgba(100, 100, 100, 0.3);
}

.shop-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ====== NEWSLETTER SECTION - ORGANIZADA ====== */
.shop-newsletter {
    background: rgba(0, 39, 77, 0.9);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(129, 27, 82, 0.4);
    padding: 45px 35px;
    text-align: center;
    margin: 60px auto 40px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 400;
}

/* ====== NEWSLETTER FORM - ORGANIZADA ====== */
.newsletter-form {
    display: flex;
    gap: 18px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(129, 27, 82, 0.5);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.newsletter-input:focus {
    border-color: rgba(129, 27, 82, 0.8);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(129, 27, 82, 0.2);
    transform: translateY(-2px);
}

.newsletter-btn {
    padding: 14px 25px;
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.4);
}

/* ====== RESPONSIVE DESIGN - CARDS COMPACTAS ====== */
@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .shop-page .main-container {
        padding-top: 160px;
    }
    
    .shop-container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 12px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
        margin: 20px 0;
    }
    
    .shop-card {
        height: 130px;
    }
    
    .shop-card-header {
        height: 70px;
    }
    
    .shop-card-icon {
        font-size: 28px;
    }
    
    .shop-card-content {
        padding: 8px;
        height: 60px;
    }
    
    .shop-btn {
        padding: 8px 10px;
        font-size: 10px;
        gap: 4px;
    }
    
    .shop-badge {
        padding: 3px 8px;
        font-size: 8px;
        top: 6px;
        right: 6px;
    }
}
    
    .shop-newsletter {
        padding: 35px 20px;
        margin: 50px auto 35px auto;
        max-width: 800px;
    }
    
    .newsletter-content h3 {
        font-size: 22px;
    }
    
    .newsletter-content p {
        font-size: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        max-width: 320px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 20px 10px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .page-subtitle {
        font-size: 11px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 8px;
    }
    
    .shop-card {
        height: 110px;
    }
    
    .shop-card-header {
        height: 60px;
    }
    
    .shop-card-icon {
        font-size: 24px;
    }
    
    .shop-card-content {
        padding: 6px;
        height: 50px;
    }
    
    .shop-btn {
        padding: 6px 8px;
        font-size: 9px;
        gap: 3px;
        width: 90%;
    }
    
    .shop-badge {
        padding: 2px 6px;
        font-size: 7px;
        top: 4px;
        right: 4px;
    }
}
    
    .shop-newsletter {
        padding: 30px 15px;
        margin: 40px auto 30px auto;
        max-width: 100%;
    }
    
    .newsletter-content h3 {
        font-size: 20px;
    }
    
    .newsletter-content p {
        font-size: 14px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* ====== ELEMENTOS REMOVIDOS NA VERSÃO SIMPLIFICADA ====== */
.feature-tag,
.shop-card-description,
.shop-card-features {
    display: none !important;
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== RESPONSIVE FOOTER ====== */
@media (max-width: 768px) {
    .shop-page .footer {
        padding: 25px 15px;
        gap: 25px;
        margin-top: 60px;
        flex-direction: column;
    }
    
    .shop-page .footer-social {
        gap: 20px;
    }
    
    .shop-page .footer-social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .shop-page .footer-copyright {
        font-size: 13px;
        text-align: center;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .shop-page .footer {
        padding: 20px 10px;
        margin-top: 40px;
    }
    
    .shop-page .footer-social {
        gap: 15px;
    }
    
    .shop-page .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .shop-page .footer-copyright {
        font-size: 12px;
    }
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== AGE VERIFICATION ====== */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in;
}

.age-verification-wrapper {
    background: rgba(0, 39, 77, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255);
    padding: 1px;
    border-radius: 15px;
}

.age-verification-modal {
    background: linear-gradient(145deg, #4B0082, #00274D);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.age-verification-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-verification-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.3;
}

.age-verification-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 170px;
    border: none;
}

.age-btn-enter {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.4);
}

.age-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.5);
}

.age-btn-exit {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.age-btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.age-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-content {
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.page-content.unblurred {
    filter: none;
}

/* ====== COMING SOON PAGES ====== */
.community-container, .mini-game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-card {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 40px;
}

.coming-soon-icon {
    font-size: 80px;
    color: #811b52;
    margin-bottom: 30px;
    opacity: 0.8;
}

.coming-soon-card h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.notify-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

/* ====== LOGIN MODAL E NOTIFICAÇÕES - CORRIGIDO ====== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: linear-gradient(135deg, #2f202e, #4B0082);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.login-modal.show .login-modal-content {
    transform: translateY(0);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.login-content {
    text-align: center;
}

.twitch-logo-big {
    font-size: 48px;
    color: #9146ff;
    margin-bottom: 20px;
}

.login-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.login-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.twitch-login-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
}

.twitch-login-btn:hover {
    background: linear-gradient(135deg, #772ce8, #9146ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

.twitch-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-benefits {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-benefits h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.login-benefits li i {
    color: #4ecdc4;
    font-size: 12px;
}

.login-btn.logged-in {
    background: linear-gradient(135deg, #811b52, #4B0082)
    padding: 8px 15px;
    min-width: 150px;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    font-size: 14px;
    font-weight: 600;
}

.user-dropdown {
    z-index: 1000;
}

.simple-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.simple-notification.success {
    background: linear-gradient(135deg, #811b52, #4B0082)
}

.simple-notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.simple-notification.info {
    background: linear-gradient(135deg, #2196F3, #1976d2);
}

.simple-notification.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.simple-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.login-modal:not(.show) {
    display: none !important;
}

.login-modal.show + * {
    pointer-events: none;
}

.login-modal.show .login-modal-content {
    pointer-events: all;
}

.login-modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.login-modal.closing .login-modal-content {
    animation: modalSlideOut 0.3s ease forwards;
}

@keyframes modalSlideOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.9);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 800px;
        gap: 18px;
    }
    
    .offer-card {
        height: 360px;
    }
    
    .header-nav-section {
        gap: 15px;
    }

    .header-nav-item {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo {
        height: 50px;
    }

    .live-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .header-center {
        width: 100%;
        margin: 0;
        gap: 30px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .header-center::-webkit-scrollbar {
        display: none;
    }

    .header-nav-section:not(:last-child)::after {
        right: -15px;
        height: 20px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    }

    .header-nav-section {
        gap: 12px;
        min-width: max-content;
    }

    .header-nav-item {
        font-size: 9px;
        border-radius: 8px;
        min-width: max-content;
    }

    .header-new-badge {
        font-size: 6px;
        margin-left: 4px;
    }

    .header-right {
        gap: 15px;
    }

    .header-icon {
        font-size: 16px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .main-container {
        min-height: calc(100vh - 140px);
        padding-top: 140px;
    }

    .content {
        padding: 20px 15px;
    }

    .content-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 20px;
        max-width: 100%;
    }

    .offer-card {
        height: auto;
        min-height: 350px;
        aspect-ratio: unset;
        perspective: 800px !important;
    }

    .card-inner {
        transition: transform 0.6s ease !important;
    }

    .card-header {
        height: 120px;
    }

    .casino-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .show-more-btn {
        font-size: 9px !important;
        padding: 5px 10px !important;
    }

    .header-icons .mb-way-badge {
        font-size: 8px;
        padding: 2px 5px;
    }

    .crypto-icon, .shield-icon {
        font-size: 10px;
    }

    .card-content {
        padding: 16px;
    }

    .offer-title {
        font-size: 13px;
        margin-bottom: 12px;
        min-height: auto;
    }

    .boxes-row.top {
        grid-template-columns: 1fr 1fr;
    }

    .boxes-row.bottom {
        grid-template-columns: 1fr;
    }

    .detail-box {
        padding: 10px 8px;
        min-height: 50px;
    }

    .detail-label {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .detail-value {
        font-size: 11px;
    }

    .claim-button {
        width: 90%;
        padding: 14px;
        margin-top: 10px;
    }

    .card-back {
        padding: 16px;
    }

    .close-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }

    .casino-logo {
        width: 45px;
        height: 45px;
    }

    .back-casino-info h3 {
        font-size: 18px;
    }

    .footer {
        padding: 15px 15px;
        gap: 20px;
        margin-top: 40px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .age-verification-modal {
        margin: 15px;
        padding: 30px 20px;
    }

    .age-verification-title {
        font-size: 24px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-btn {
        min-width: 100%;
    }

    .mini-player {
        width: 280px;
        height: 180px;
        bottom: 15px;
        right: 15px;
    }

    .mini-player-header {
        padding: 8px 12px;
    }

    .mini-player-title {
        font-size: 11px;
    }

    .mini-control-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .mini-twitch-icon {
        font-size: 30px;
    }

    .login-modal-content {
        padding: 30px 20px;
        width: 90vw;
        margin: 20px;
    }
    
    .twitch-logo-big {
        font-size: 60px;
    }
    
    .user-name {
        display: none;
    }

    .simple-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 12px;
    }

    .logo {
        height: 45px;
    }

    .header-nav-item {
        font-size: 8px;
        padding: 4px 8px;
    }

    .content {
        padding: 15px 10px;
    }

    .content-title {
        font-size: 18px;
    }

    .offer-card {
        min-height: 330px;
        perspective: 600px !important;
    }

    .card-inner {
        transition: transform 0.5s ease !important;
    }

    .card-header {
        height: 110px;
        padding: 10px;
    }

    .card-content {
        padding: 14px;
    }

    .offer-title {
        font-size: 12px;
    }

    .detail-box {
        padding: 8px 6px;
    }

    .detail-label {
        font-size: 7px;
    }

    .detail-value {
        font-size: 10px;
    }

    .footer {
        padding: 12px 10px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .age-verification-modal {
        padding: 25px 15px;
    }

    .age-verification-title {
        font-size: 20px;
    }

    .mini-player {
        width: 250px;
        height: 160px;
        bottom: 10px;
        right: 10px;
    }
}

/* ====== FIX PARA BROWSERS ANTIGOS ====== */
@supports not (transform: rotateY(180deg)) {
    .offer-card.flipped .card-front {
        display: none;
    }
    
    .offer-card.flipped .card-back {
        display: block;
        transform: none !important;
    }
    
    .card-back {
        display: none;
    }
}

/* ====== FIX PARA SAFARI ====== */
@supports (-webkit-appearance: none) {
    .card-front,
    .card-back {
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
    }
    
    .card-inner {
        -webkit-transform-style: preserve-3d;
    }
}

/* ====== REDUCED MOTION SUPPORT ====== */
@media (prefers-reduced-motion: reduce) {
    .card-inner {
        transition: transform 0.3s ease !important;
    }
    
    .offer-card:hover {
        transform: none;
    }
    
    @keyframes cardFlipHighlight {
        0%, 100% {
            transform: none;
        }
        50% {
            transform: scale(1.01);
        }
    }
}


/* ===== File: leaderboard.css ===== */
/* ====== LEADERBOARD STYLES - UPDATED FOR REAL DATA ====== */
.leaderboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(129, 27, 82, 0.1), rgba(75, 0, 130, 0.1));
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.page-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.leaderboard-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.leaderboard-stats .stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(129, 27, 82, 0.2), rgba(75, 0, 130, 0.2));
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    backdrop-filter: blur(10px);
    min-width: 140px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leaderboard-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(129, 27, 82, 0.3);
}

.leaderboard-stats .stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #e600ff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(255, 217, 61, 0.3);
}

.leaderboard-stats .stat-label {
    font-size: 0.9rem;
    color: rgb(255 255 255);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.leaderboard-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(0, 39, 77, 0.5);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.refresh-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.3);
}

.refresh-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

.refresh-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.search-container {
    position: relative;
    max-width: 350px;
    flex: 1;
}

.search-container input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 14px 50px 14px 20px;
    color: white;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-container input:focus {
    outline: none;
    border-color: #811b52;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(129, 27, 82, 0.3);
}

.search-container i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    font-size: 16px;
}

.user-position-container {
    margin: 20px 0;
}

.user-position {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(129, 27, 82, 0.1));
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2); }
    to { box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4); }
}

.position-card h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.position-card h3::before {
    content: "ðŸ‘‘";
    font-size: 24px;
}

.position-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.position-rank {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD93D;
    text-shadow: 0 4px 15px rgba(255, 217, 61, 0.5);
}

.position-points {
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
}

.leaderboard-table-container {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.loading-leaderboard,
.empty-leaderboard,
.error-leaderboard {
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.loading-leaderboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-leaderboard i {
    font-size: 50px;
    color: #811b52;
    margin-bottom: 10px;
}

.loading-leaderboard h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.loading-leaderboard p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.empty-leaderboard .empty-icon,
.error-leaderboard .error-icon {
    font-size: 70px;
    color: #811b52;
    margin-bottom: 25px;
    opacity: 0.7;
}

.empty-leaderboard h3,
.error-leaderboard h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 28px;
}

.empty-leaderboard p,
.error-leaderboard p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.retry-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    padding: 14px 28px;
    border-radius: 25px;
    gap: 10px;
}

.retry-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

.leaderboard-table {
    width: 100%;
}

.table-header {
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 13px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-rank {
    width: 100px;
    text-align: center;
}

.header-user {
    flex: 1;
    padding-left: 20px;
}

.header-points {
    width: 180px;
    text-align: center;
}

.header-status {
    width: 140px;
    text-align: center;
}

.table-body {
    max-height: 700px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(129, 27, 82, 0.5) transparent;
}

.table-body::-webkit-scrollbar {
    width: 8px;
}

.table-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.table-body::-webkit-scrollbar-thumb {
    background: rgba(129, 27, 82, 0.6);
    border-radius: 4px;
}

.table-body::-webkit-scrollbar-thumb:hover {
    background: rgba(129, 27, 82, 0.8);
}

.leaderboard-row {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    background: transparent;
    position: relative;
}

.leaderboard-row:hover {
    background: rgba(129, 27, 82, 0.15);
    transform: translateY(-1px);
}

.leaderboard-row.current-user {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    margin: 8px 15px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.leaderboard-row.top-rank {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(129, 27, 82, 0.08));
    border-left: 4px solid #FFD93D;
}

.row-rank {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rank-number {
    font-size: 20px;
    font-weight: bold;
    color: white;
    min-width: 35px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.rank-icon {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.rank-icon.gold {
    color: #FFD700;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.rank-icon.silver {
    color: #C0C0C0;
}

.rank-icon.bronze {
    color: #CD7F32;
}

.row-user {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 20px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    overflow: hidden;
    background: linear-gradient(135deg, #811b52, #4B0082);
    display: flex;
    align-items: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.user-avatar:hover {
    border-color: #FFD93D;
    transform: scale(1.05);
}

.user-avatar img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.user-avatar i {
    color: white;
    font-size: 20px;
}

.user-info {
    flex: 1;
}

.username {
    font-size: 17px;
    font-weight: bold;
    color: white;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.user-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-meta i {
    color: #FFD93D;
}

.row-points {
    width: 180px;
    text-align: center;
}

.points-value {
    font-size: 20px;
    font-weight: bold;
    color: #FFD93D;
    display: block;
    text-shadow: 0 2px 8px rgba(255, 217, 61, 0.3);
}

.points-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.row-status {
    width: 140px;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-badge.online {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.4);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.status-badge.offline {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.status-badge i {
    font-size: 8px;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.discord-cta {
    background: linear-gradient(135deg, #7289DA, #5865F2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-top: 30px;
}

.discord-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.discord-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.discord-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.discord-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .leaderboard-container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .leaderboard-stats {
        gap: 20px;
    }
    
    .leaderboard-stats .stat-item {
        padding: 20px 15px;
        min-width: 120px;
    }
    
    .leaderboard-controls {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .table-header,
    .leaderboard-row {
        padding: 15px 20px;
    }
    
    .header-rank,
    .row-rank {
        width: 70px;
    }
    
    .header-points,
    .row-points {
        width: 140px;
    }
    
    .header-status,
    .row-status {
        width: 110px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .username {
        font-size: 15px;
    }
    
    .points-value {
        font-size: 18px;
    }
    
    .position-details {
        gap: 25px;
    }
    
    .position-rank {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .table-header {
        font-size: 11px;
        padding: 12px 15px;
    }
    
    .leaderboard-row {
        padding: 12px 15px;
    }
    
    .header-user,
    .row-user {
        padding-left: 10px;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
    }
    
    .username {
        font-size: 14px;
    }
    
    .user-meta {
        font-size: 11px;
    }
    
    .points-value {
        font-size: 16px;
    }
    
    .status-badge {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .header-status,
    .row-status {
        display: none;
    }
    
    .header-points,
    .row-points {
        width: 120px;
    }
    
    .discord-cta {
        padding: 30px 20px;
    }
    
    .discord-cta h3 {
        font-size: 20px;
    }
    
    .discord-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 264px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== FOOTER ====== */
.footer {
    width: 100%;
    background: rgba(0, 39, 77, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(129, 27, 82, 0.2);
    padding: 8px 0;
    margin-top: 264px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    background: rgba(129, 27, 82, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #811b52;
    background: rgba(129, 27, 82, 0.3);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright i {
    font-size: 10px;
}

/* ====== AGE VERIFICATION ====== */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in;
}

.age-verification-wrapper {
    background: rgba(0, 39, 77, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255);
    padding: 1px;
    border-radius: 15px;
}

.age-verification-modal {
    background: linear-gradient(145deg, #4B0082, #00274D);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.age-verification-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-verification-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.3;
}

.age-verification-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 170px;
    border: none;
}

.age-btn-enter {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 27, 82, 0.4);
}

.age-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 27, 82, 0.5);
}

.age-btn-exit {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.age-btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.age-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-content {
    filter: blur(5px);
    transition: filter 0.5s ease;
}

.page-content.unblurred {
    filter: none;
}

/* ====== COMING SOON PAGES ====== */
.community-container, .mini-game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-card {
    background: rgba(0, 39, 77, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(129, 27, 82, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 40px;
}

.coming-soon-icon {
    font-size: 80px;
    color: #811b52;
    margin-bottom: 30px;
    opacity: 0.8;
}

.coming-soon-card h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #811b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.notify-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #811b52, #4B0082)
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 27, 82, 0.4);
}

/* ====== LOGIN MODAL E NOTIFICAÇÕES - CORRIGIDO ====== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: linear-gradient(135deg, #2f202e, #4B0082);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.login-modal.show .login-modal-content {
    transform: translateY(0);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.login-content {
    text-align: center;
}

.twitch-logo-big {
    font-size: 48px;
    color: #9146ff;
    margin-bottom: 20px;
}

.login-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.login-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.twitch-login-btn {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
}

.twitch-login-btn:hover {
    background: linear-gradient(135deg, #772ce8, #9146ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

.twitch-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-benefits {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-benefits h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.login-benefits li i {
    color: #4ecdc4;
    font-size: 12px;
}

.login-btn.logged-in {
    background: linear-gradient(135deg, #811b52, #4B0082)
    padding: 8px 15px;
    min-width: 150px;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    font-size: 14px;
    font-weight: 600;
}

.user-dropdown {
    z-index: 1000;
}

.simple-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.simple-notification.success {
    background: linear-gradient(135deg, #811b52, #4B0082)
}

.simple-notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.simple-notification.info {
    background: linear-gradient(135deg, #2196F3, #1976d2);
}

.simple-notification.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.simple-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.login-modal:not(.show) {
    display: none !important;
}

.login-modal.show + * {
    pointer-events: none;
}

.login-modal.show .login-modal-content {
    pointer-events: all;
}

.login-modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.login-modal.closing .login-modal-content {
    animation: modalSlideOut 0.3s ease forwards;
}

@keyframes modalSlideOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.9);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 800px;
        gap: 18px;
    }
    
    .offer-card {
        height: 360px;
    }
    
    .header-nav-section {
        gap: 15px;
    }

    .header-nav-item {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo {
        height: 50px;
    }

    .live-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .header-center {
        width: 100%;
        margin: 0;
        gap: 30px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .header-center::-webkit-scrollbar {
        display: none;
    }

    .header-nav-section:not(:last-child)::after {
        right: -15px;
        height: 20px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    }

    .header-nav-section {
        gap: 12px;
        min-width: max-content;
    }

    .header-nav-item {
        font-size: 9px;
        border-radius: 8px;
        min-width: max-content;
    }

    .header-new-badge {
        font-size: 6px;
        margin-left: 4px;
    }

    .header-right {
        gap: 15px;
    }

    .header-icon {
        font-size: 16px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .main-container {
        min-height: calc(100vh - 140px);
        padding-top: 140px;
    }

    .content {
        padding: 20px 15px;
    }

    .content-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 20px;
        max-width: 100%;
    }

    .offer-card {
        height: auto;
        min-height: 350px;
        aspect-ratio: unset;
        perspective: 800px !important;
    }

    .card-inner {
        transition: transform 0.6s ease !important;
    }

    .card-header {
        height: 120px;
    }

    .casino-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .show-more-btn {
        font-size: 9px !important;
        padding: 5px 10px !important;
    }

    .header-icons .mb-way-badge {
        font-size: 8px;
        padding: 2px 5px;
    }

    .crypto-icon, .shield-icon {
        font-size: 10px;
    }

    .card-content {
        padding: 16px;
    }

    .offer-title {
        font-size: 13px;
        margin-bottom: 12px;
        min-height: auto;
    }

    .boxes-row.top {
        grid-template-columns: 1fr 1fr;
    }

    .boxes-row.bottom {
        grid-template-columns: 1fr;
    }

    .detail-box {
        padding: 10px 8px;
        min-height: 50px;
    }

    .detail-label {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .detail-value {
        font-size: 11px;
    }

    .claim-button {
        width: 90%;
        padding: 14px;
        margin-top: 10px;
    }

    .card-back {
        padding: 16px;
    }

    .close-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }

    .casino-logo {
        width: 45px;
        height: 45px;
    }

    .back-casino-info h3 {
        font-size: 18px;
    }

    .footer {
        padding: 15px 15px;
        gap: 20px;
        margin-top: 40px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .age-verification-modal {
        margin: 15px;
        padding: 30px 20px;
    }

    .age-verification-title {
        font-size: 24px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-btn {
        min-width: 100%;
    }

    .mini-player {
        width: 280px;
        height: 180px;
        bottom: 15px;
        right: 15px;
    }

    .mini-player-header {
        padding: 8px 12px;
    }

    .mini-player-title {
        font-size: 11px;
    }

    .mini-control-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .mini-twitch-icon {
        font-size: 30px;
    }

    .login-modal-content {
        padding: 30px 20px;
        width: 90vw;
        margin: 20px;
    }
    
    .twitch-logo-big {
        font-size: 60px;
    }
    
    .user-name {
        display: none;
    }

    .simple-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 12px;
    }

    .logo {
        height: 45px;
    }

    .header-nav-item {
        font-size: 8px;
        padding: 4px 8px;
    }

    .content {
        padding: 15px 10px;
    }

    .content-title {
        font-size: 18px;
    }

    .offer-card {
        min-height: 330px;
        perspective: 600px !important;
    }

    .card-inner {
        transition: transform 0.5s ease !important;
    }

    .card-header {
        height: 110px;
        padding: 10px;
    }

    .card-content {
        padding: 14px;
    }

    .offer-title {
        font-size: 12px;
    }

    .detail-box {
        padding: 8px 6px;
    }

    .detail-label {
        font-size: 7px;
    }

    .detail-value {
        font-size: 10px;
    }

    .footer {
        padding: 12px 10px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .age-verification-modal {
        padding: 25px 15px;
    }

    .age-verification-title {
        font-size: 20px;
    }

    .mini-player {
        width: 250px;
        height: 160px;
        bottom: 10px;
        right: 10px;
    }
}

/* ====== FIX PARA BROWSERS ANTIGOS ====== */
@supports not (transform: rotateY(180deg)) {
    .offer-card.flipped .card-front {
        display: none;
    }
    
    .offer-card.flipped .card-back {
        display: block;
        transform: none !important;
    }
    
    .card-back {
        display: none;
    }
}

/* ====== FIX PARA SAFARI ====== */
@supports (-webkit-appearance: none) {
    .card-front,
    .card-back {
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
    }
    
    .card-inner {
        -webkit-transform-style: preserve-3d;
    }
}

/* ====== REDUCED MOTION SUPPORT ====== */
@media (prefers-reduced-motion: reduce) {
    .card-inner {
        transition: transform 0.3s ease !important;
    }
    
    .offer-card:hover {
        transform: none;
    }
    
    @keyframes cardFlipHighlight {
        0%, 100% {
            transform: none;
        }
        50% {
            transform: scale(1.01);
        }
    }
}
/* ===== Mobile Navigation Overrides ===== */
.mobile-nav-toggle{
    display:none;
    background:none;
    border:none;
    font-size:24px;
    color:#ffffff;
    cursor:pointer;
}
.mobile-nav-toggle:focus{
    outline:2px solid #811b52;
    outline-offset:2px;
}
.mobile-menu{
    transform:translateY(-100%);
    transition:transform 0.3s ease-out;
    background:linear-gradient(135deg,#2c1b5b,#4B0082);
    padding:20px;
    position:fixed;
    top:60px;
    left:0;
    right:0;
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.mobile-menu.show{
    transform:translateY(0);
}

/* Performance tweaks: disable parallax background on mobile */
@media (max-width:768px){
    .mobile-nav-toggle{display:block;}
    .header-center{display:none;}
    .header{
        flex-direction:row;
        height:60px;
        padding:0 12px;
    }
    .logo-container{display:none;}
    .header-right{margin-left:auto;gap:12px;}
    body{background-attachment:scroll;}
}


/* === Ensure desktop navigation visible & mobile hidden (patch 2025-07-02) === */
@media (min-width: 769px){
    .header-center{display:flex !important;}
    #mobileMenu{display:none !important;}
}
@media (max-width: 768px){
    .header-center{display:none !important;}
    .mobile-nav-toggle{display:block !important;}
}
/* ====== MOBILE NAVIGATION - CORRIGIDO ====== */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle:focus {
    outline: 2px solid #811b52;
    outline-offset: 2px;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c1b5b, #4B0082);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(129, 27, 82, 0.3);
    padding: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu .header-nav-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.mobile-menu .header-nav-item:last-child {
    border-bottom: none;
}

.mobile-menu .header-nav-item:hover {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: #ffffff;
    transform: translateX(5px);
}

.mobile-menu .header-nav-item.active {
    background: linear-gradient(135deg, #811b52, #4B0082);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(129, 27, 82, 0.3);
}

.mobile-menu .header-nav-item i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

.mobile-menu .header-new-badge,
.mobile-menu .header-coming-soon {
    margin-left: auto;
    background: rgba(75, 0, 130, 0.9);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: bold;
}

/* ====== RESPONSIVE MOBILE RULES ====== */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block !important;
    }
    
    .header-center {
        display: none !important;
    }
    
    .header {
        flex-direction: row !important;
        height: 70px !important;
        padding: 0 15px !important;
        gap: 0 !important;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo {
        height: 50px;
    }
    
    .header-right {
        margin-left: auto;
        gap: 15px;
    }
    
    .login-btn {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    .main-container {
        padding-top: 70px !important;
    }
}

@media (min-width: 769px) {
    .mobile-nav-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .header-center {
        display: flex !important;
    }
}
/* ====== MINI PLAYER ARRASTÁVEL ====== */
.mini-player-draggable {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    height: 250px;
    min-width: 300px;
    min-height: 200px;
    max-width: 600px;
    max-height: 400px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 12px;
    border: 1px solid rgba(145, 70, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    cursor: move;
    resize: both;
    user-select: none;
}

.mini-player-draggable.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mini-player-draggable.hide {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    pointer-events: none;
}

.mini-player-draggable.dragging {
    cursor: grabbing;
    z-index: 10000;
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(145, 70, 255, 0.6);
}

.mini-player-draggable.pinned {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.mini-player-header {
    background: linear-gradient(135deg, #9146ff, #6441a4);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: grab;
    border-radius: 12px 12px 0 0;
}

.mini-player-header:active {
    cursor: grabbing;
}

.mini-player-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: headerShimmer 3s infinite;
}

@keyframes headerShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mini-player-title {
    color: white;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.mini-live-dot {
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.mini-player-controls {
    display: flex;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.mini-control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 10px;
}

.mini-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mini-control-btn.active {
    background: rgba(255, 215, 0, 0.3);
    color: #FFD93D;
}

.mini-player-content {
    height: calc(100% - 32px);
    position: relative;
    background: #000;
    overflow: hidden;
}

.mini-player-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    display: block;
}

.mini-player-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4B0082, #9146ff);
    color: white;
    z-index: 2;
}

.loading-spinner {
    font-size: 24px;
    margin-bottom: 8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 10px;
    opacity: 0.8;
}

.mini-player-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 8px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mini-player-draggable:hover .mini-player-info {
    opacity: 1;
}

.stream-title {
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-stats {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    opacity: 0.8;
}

.viewer-count,
.stream-category {
    display: flex;
    align-items: center;
    gap: 3px;
}

.resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    cursor: se-resize;
    border-radius: 12px 0 12px 0;
}

.resize-handle::before {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-bottom: 6px solid rgba(255, 255, 255, 0.5);
}

/* ====== RESPONSIVE MOBILE ====== */
@media (max-width: 768px) {
    .mini-player-draggable {
        width: 280px;
        height: 180px;
        min-width: 250px;
        min-height: 160px;
        bottom: 15px;
        right: 15px;
    }
    
    .mini-player-header {
        padding: 6px 10px;
    }
    
    .mini-player-title {
        font-size: 10px;
    }
    
    .mini-control-btn {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .mini-player-draggable {
        width: 250px;
        height: 160px;
        bottom: 10px;
        right: 10px;
    }
}