﻿:root {
    --background: #ffffff;
    --background-variant: #f7f9fe;
    --background-grey: #f7f9fe;
    --foreground: #000000;
    --primary: #0540FA;
    --secondary: #FFBD48;
    --green-400: #4ade80;
    --green-500: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    user-select: none;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

/* Header - h-12 = 48px */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 48px;
    background: var(--primary);
    z-index: 50;
    transition: all 0.3s ease;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0,0,0,0.15);
    width: 100%;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    border: none;
    transition: all 0.2s ease;
    background: transparent;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    min-width: 32px;
    width: 36px;
    height: 36px;
    color: white;
    aspect-ratio: 1;
    padding: 0;
}

    .header-btn:hover {
        opacity: 0.9;
    }

@media (min-width: 640px) {
    .header-btn:hover {
        background: rgba(0,0,0,0.1);
    }

    .header-btn {
        min-width: 36px;
        height: 36px;
    }
}

.header-btn svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
}

.logo-container {
    position: relative;
    height: 40px;
    width: 144px;
}

@media (min-width: 640px) {
    .logo-container {
        height: 32px;
        width: 192px;
    }
}

.logo {
    margin: 0 auto;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* Sidebar */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--background);
    z-index: 101;
    transition: left 0.3s ease;
    overflow-y: auto;
}

    .sidebar.active {
        left: 0;
    }

.sidebar-header {
    background: var(--primary);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}

    .sidebar-header img {
        height: 28px;
    }

.sidebar-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sidebar-close svg {
        fill: white;
        width: 24px;
        height: 24px;
    }

.sidebar-menu {
    padding: 16px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--foreground);
    font-size: 15px;
    font-weight: 500;
}

    .sidebar-item:hover {
        background: var(--background-variant);
    }

    .sidebar-item svg {
        fill: var(--primary);
        width: 22px;
        height: 22px;
    }

/* Login Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .drawer-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.drawer {
    position: fixed;
    inset: auto 0 0 0;
    background: var(--background);
    border-radius: 10px 10px 0 0;
    z-index: 201;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 16px 0 32px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

    .drawer.active {
        transform: translateY(0);
    }

.drawer-header {
    display: grid;
    gap: 4px;
    padding: 8px 16px 20px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

    .drawer-header h2 {
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: -0.025em;
    }

.drawer-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
    z-index: 10;
}

    .drawer-close:hover {
        background: rgba(0,0,0,0.1);
    }

    .drawer-close svg {
        width: 10px;
        height: 10px;
        fill: currentColor;
    }

.drawer-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    flex-grow: 1;
}

.drawer-description {
    font-size: 14px;
    color: var(--foreground);
    text-align: center;
}

.drawer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

    .form-group label {
        font-size: 14px;
        font-weight: 500;
        color: var(--foreground);
    }

    .form-group input {
        width: 100%;
        height: 44px;
        padding: 0 8px;
        border: 2px solid rgba(0,0,0,0.25);
        border-radius: 6px;
        font-size: 16px;
        background: var(--background);
        transition: all 0.2s;
        font-family: inherit;
        caret-color: var(--foreground);
    }

@media (min-width: 768px) {
    .form-group input {
        font-size: 14px;
    }
}

.form-group input::placeholder {
    color: rgba(0,0,0,0.4);
}

.form-group input:focus {
    outline: none;
    ring: 2px;
    box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--foreground);
}

.form-divider {
    height: 1px;
    width: 100%;
    background: rgba(0,0,0,0.1);
}

.drawer-btn {
    width: 100%;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

@media (min-width: 768px) {
    .drawer-btn {
        height: 44px;
    }
}

.drawer-btn:hover {
    opacity: 0.9;
}

.drawer-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Main Content - pt-12 = 48px */
.main-container {
    padding-top: 48px;
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(247,249,254,0.15), transparent);
}

.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 10px;
}

@media (min-width: 768px) {
    .content-wrapper {
        padding: 16px;
    }
}

.grid-container {
    display: grid;
    gap: 10px;
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
        background: var(--background-variant);
        border-radius: 8px;
        padding: 16px;
        gap: 16px;
    }
}

/* Banner */
.banner-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
}

.banner-img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 635 / 435;
}

/* Info Box - based on original */
.info-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--background-variant);
    padding: 12px;
    border-radius: 8px;
    margin-top: 4px;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

@media (min-width: 1024px) {
    .info-box {
        background: var(--background);
        margin-top: 0;
    }
}

.info-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-title {
    color: var(--foreground);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .info-title {
        font-size: 20px;
    }
}

.info-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
}

.info-price-label {
    color: rgba(0,0,0,0.9);
    text-align: right;
    font-size: 14px;
}

.info-price {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
}

/* Super Combos */
.combos-section {
    margin-top: 10px;
}

.combos-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.combos-title {
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .combos-title {
        font-size: 18px;
    }
}

.fire-icon {
    fill: currentColor;
    color: var(--secondary);
    width: 16px;
    height: 16px;
}

/* Combos Grid - gap-1 = 4px, h-12 = 48px mobile, h-18 = 72px desktop */
.combos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

@media (min-width: 768px) {
    .combos-grid {
        gap: 8px;
    }
}

.combo-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    min-height: 56px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .combo-btn {
        min-height: 80px;
        padding: 14px 10px;
    }
}

.combo-btn span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .combo-btn span {
        font-size: 14px;
    }
}

.combo-btn:hover {
    border-color: var(--primary);
}

.combo-btn:active {
    transform: scale(0.98);
}

.combo-btn.selected {
    border-color: var(--primary);
    border-width: 2px;
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--primary);
}

.combo-btn.popular {
    animation: pulse 1s ease-in-out infinite;
    transform: scale(1.05);
    border-color: rgba(5, 64, 250, 0.1);
    border-width: 2px;
    background: var(--background);
}

    .combo-btn.popular.selected {
        animation: none;
        transform: scale(1);
        border-color: var(--primary);
        background: transparent;
        box-shadow: inset 0 0 0 1px var(--primary);
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Purchase Section - rounded-t-3xl = 24px, p-3 = 12px */
.purchase-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background);
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 40;
}

@media (min-width: 1024px) {
    .purchase-section {
        position: static;
        border-radius: 8px;
        box-shadow: none;
        margin-top: 16px;
        background: var(--background-variant);
        padding: 16px;
    }
}

.purchase-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 12px;
}

.total-label {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(0,0,0,0.6);
}

.total-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
    transition: all 0.3s ease;
}

    .total-value.updated {
        animation: valueUpdate 0.3s ease;
    }

@keyframes valueUpdate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Quantity Selector - h-14 = 56px, w-11 = 44px */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 56px;
}

.qty-btn {
    width: 48px;
    height: 100%;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    color: var(--foreground);
    transition: all 0.2s ease;
}

    .qty-btn:hover {
        border-color: var(--primary);
    }

    .qty-btn:active {
        transform: scale(0.95);
    }

    .qty-btn svg {
        fill: currentColor;
        width: 22px;
        height: 22px;
    }

.qty-input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    height: 100%;
    min-width: 80px;
}

.qty-label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.qty-input {
    width: 60px;
    background: transparent;
    border: none;
    color: var(--foreground);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    outline: none;
    font-family: inherit;
    -moz-appearance: textfield;
}

    .qty-input::-webkit-outer-spin-button,
    .qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/* Buy Button - h-12 = 48px */
.buy-btn {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--green-500), var(--green-400));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

    .buy-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
        animation: shimmer 2s infinite;
    }

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.buy-btn:hover {
    opacity: 0.95;
}

.buy-btn:active {
    transform: scale(0.98);
}

.buy-btn svg {
    fill: currentColor;
    width: 22px;
    height: 22px;
}

.arrow-container {
    display: flex;
    width: 50px;
    height: 24px;
    position: relative;
}

.arrow {
    animation: arrowMove 1s ease-in-out infinite;
    width: 18px;
    height: 24px;
    position: absolute;
}

    .arrow.a1 {
        animation-delay: 0s;
        left: 0;
    }

    .arrow.a2 {
        animation-delay: 0.15s;
        left: 16px;
    }

    .arrow.a3 {
        animation-delay: 0.3s;
        left: 32px;
    }

@keyframes arrowMove {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(2px);
    }
}

/* Winners Section - h-24 = 96px cards, gap-2 = 8px */
.winners-section {
    display: flex;
    width: 100%;
    height: 100px;
    gap: 4px;
    margin-top: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .winners-section {
        margin-bottom: 16px;
    }
}

.winners-label {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    height: 86px;
    position: relative;
    min-width: 70px;
    padding-top: 8px;
}

    .winners-label p {
        font-size: 9px;
        font-weight: 700;
        text-align: center;
        line-height: 10px;
        text-transform: uppercase;
        color: var(--foreground);
    }

.trophy-bg-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #000000;
    border-radius: 50%;
    border: 3px solid #FFBD48;
}

.winners-scroll {
    width: 100%;
    margin-left: auto;
    overflow: hidden;
}

.winners-track {
    display: flex;
    width: fit-content;
}

.winner-wrapper {
    padding: 0 8px;
}

@media (min-width: 768px) {
    .winner-wrapper {
        padding-left: 0;
    }
}


/* Winner Card - layout igual ao original */
.winner-card {
    position: relative;
    background: var(--background-variant);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    min-width: 176px;
    height: 96px;
    gap: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

    .winner-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.winner-icon-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 56px;
    z-index: 1;
}

    .winner-icon-left img {
        width: 62px;
        height: 62px;
        object-fit: contain;
        animation: boltPulse 2s ease-in-out infinite;
    }

@keyframes boltPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.winner-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
    min-width: 0;
    z-index: 1;
    border-radius: 8px;
}

.winner-name {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.3;
    color: var(--foreground);
}

.winner-time {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0,0,0,0.6);
    text-align: right;
    line-height: 1.3;
}

.winner-amount {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    color: var(--foreground);
    line-height: 1.3;
}

.winner-location {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 10px;
    text-align: right;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 72px);
}

.winner-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 58px;
    height: 58px;
    opacity: 1;
}

.new-winner-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--secondary);
    color: #000;
    font-size: 7px;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 3px;
    animation: newBadge 1s ease-in-out infinite;
    z-index: 2;
}

@keyframes newBadge {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Trophy icon for winners label */
.trophy-container {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    z-index: 1;
}

    .trophy-container svg {
        width: 100%;
        height: 100%;
    }

/* Lottie-style trophy animations */
.trophy-sparkle {
    animation: sparkleAnim 1.5s ease-in-out infinite;
}

.trophy-sparkle-2 {
    animation: sparkleAnim 1.5s ease-in-out infinite 0.3s;
}

.trophy-sparkle-3 {
    animation: sparkleAnim 1.5s ease-in-out infinite 0.6s;
}

@keyframes sparkleAnim {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.trophy-star {
    animation: starPulse 2s ease-in-out infinite;
    transform-origin: center;
}

.trophy-star-2 {
    animation: starPulse 2s ease-in-out infinite 0.5s;
    transform-origin: center;
}

@keyframes starPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.9) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) rotate(15deg);
    }
}

.trophy-shine {
    animation: trophyShine 3s ease-in-out infinite;
}

@keyframes trophyShine {
    0%, 100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Footer */
.footer {
    width: 100vw;
    background: var(--primary);
    padding: 16px 16px;
    padding-bottom: 320px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
}

@media (min-width: 768px) {
    .footer {
        padding-bottom: 80px;
    }
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 1280px) {
    .footer-top {
        flex-direction: row;
        gap: 56px;
    }
}

.footer-left {
    margin-bottom: 20px;
}

@media (min-width: 1280px) {
    .footer-left {
        width: 46%;
        margin-bottom: 0;
    }
}

.footer-title {
    margin-bottom: 8px;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 24px;
    }
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

    .footer-logo-row img {
        height: 32px;
        width: 120px;
        object-fit: contain;
    }

.footer-description {
    text-align: justify;
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.footer-right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (min-width: 1280px) {
    .footer-right {
        width: 54%;
    }
}

.footer-partner img {
    width: 120px;
    height: 50px;
    object-fit: contain;
}

.footer-legal {
    color: white;
    text-align: justify;
    margin-bottom: 16px;
    font-size: 10px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .footer-legal {
        font-size: 12px;
    }
}

.footer-divider {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.1);
    margin-bottom: 16px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
    }
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-copy {
    color: rgba(255,255,255,0.9);
    font-size: 10px;
}

@media (min-width: 768px) {
    .footer-copy {
        font-size: 14px;
    }
}

.footer-link {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.2s;
    text-align: left;
}

    .footer-link:hover {
        color: white;
    }

.footer-dev {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
}

.footer-dev-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

@media (min-width: 768px) {
    .footer-dev-inner {
        flex-direction: row;
    }
}

.footer-dev span {
    color: rgba(255,255,255,0.9);
    font-size: 10px;
}

@media (min-width: 768px) {
    .footer-dev span {
        font-size: 14px;
    }
}

.footer-dev a {
    color: rgba(255,255,255,0.9);
    transition: color 0.2s;
}

    .footer-dev a:hover {
        color: white;
    }

.footer-stamps {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .footer-stamps {
        justify-content: flex-end;
        gap: 12px;
        margin-top: 0;
    }
}

.footer-stamps img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 240px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

    .toast.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

@media (min-width: 1024px) {
    .toast {
        bottom: 80px;
    }
}

