/* WebTibiaIN - Main Stylesheet */

:root {
    --bg-sidebar: #0f1724;
    --bg-gradient-start: #081229;
    --bg-gradient-end: #142033;
    --accent: #0066cc;
    --accent-hover: #0052a3;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --sidebar-width-collapsed: 80px;
    --sidebar-width-expanded: 240px;
    --transition-speed: 0.3s;
    --profit-pos: #10b981;
    --profit-neg: #ef4444;
    --iban-color: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Allow text selection everywhere */
body, p, div, span, h1, h2, h3, h4, h5, h6 {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* Allow selection for inputs and textareas */
input, textarea, select {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* Disable right-click on images */
img {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow pointer events for mobile nav images */
#mobile-nav img {
    pointer-events: auto !important;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
}

/* SIDEBAR */
.sidebar {
    background-color: var(--bg-sidebar);
    width: var(--sidebar-width-collapsed);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: width var(--transition-speed) ease;
    z-index: 1000;
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar::-webkit-scrollbar {
    width: 0;
}

.sidebar.expanded {
    width: var(--sidebar-width-expanded);
    align-items: flex-start;
    padding-left: 0;
}

.sidebar-toggle {
    cursor: pointer;
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    background: none;
    border: none;
    height: 40px;
}

.sidebar.expanded .sidebar-toggle {
    text-align: right;
    padding-right: 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.nav-item:hover,
.nav-item.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-left: 3px solid var(--accent);
}

#nav-shop {
    background: transparent;
    border-left: 3px solid transparent;
}

#nav-shop.active {
    border-left: 3px solid var(--accent);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-icon {
    width: var(--sidebar-width-collapsed);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.nav-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.2s;
}

.nav-icon img.flag-icon {
    border-radius: 50%;
}

.nav-icon img.whatsapp-icon {
    width: 64px;
    height: 64px;
}

.nav-item:hover .nav-icon img {
    transform: scale(1.1);
}

.nav-label {
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 0.9rem;
    pointer-events: none;
    margin-left: 0;
    white-space: nowrap;
    display: none;
}

.sidebar.expanded .nav-label {
    opacity: 1;
    pointer-events: auto;
    display: block;
    margin-left: 10px;
}

.nav-separator {
    width: 80%;
    height: 1px;
    background: var(--border-color);
    margin: 10px auto;
}

.nav-icon-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

/* MAIN CONTENT */
.main-content {
    margin-left: var(--sidebar-width-collapsed);
    width: calc(100% - var(--sidebar-width-collapsed));
    transition: margin-left var(--transition-speed) ease, width var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar.expanded + .main-content {
    margin-left: var(--sidebar-width-expanded);
    width: calc(100% - var(--sidebar-width-expanded));
}

/* HEADER */
.header {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.2vh 3vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 900;
}

.header-left a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s;
    gap: 15px;
}

.header-left a:hover {
    transform: scale(1.05);
}

.header-left img {
    height: 80px;
    width: auto;
    background: transparent;
    padding: 0;
    display: block;
}

.mobile-logo-text {
    display: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.header-center {
    text-align: center;
}

.header-center h1 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-center p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px 5px 5px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
}

.footer-contact .user-profile {
    background: rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.3);
    width: fit-content;
}

.footer-contact .user-profile:hover {
    background: rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.5);
}

.discord-btn {
    background-color: #5865F2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* CONTENT */
#content-container {
    flex: 1;
    padding: 8px 3%;
    position: relative;
}

.view-section {
    display: none;
    animation: fadeIn 0.5s ease;
    width: 100%;
}

.view-section.active {
    display: block;
}

/* MENU TILES */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
}

.menu-tile {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    text-align: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.menu-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
}

.menu-tile:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 102, 204, 0.4);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2), 0 0 40px rgba(0, 102, 204, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.menu-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-tile:hover .menu-icon {
    transform: scale(1.1);
}

.menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    background: linear-gradient(90deg, #ffffff 0%, #e0e8f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* THANK YOU CARD */
.thank-you-card {
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.thank-you-card:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.thank-you-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* SHOP PRODUCTS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
}

.product-card:hover {
    transform: scale(1.02);
    border-color: rgba(0, 102, 204, 0.4);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2), 0 0 40px rgba(0, 102, 204, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.product-img-wrapper {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #0a1929 0%, #1a2f4a 50%, #081229 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.product-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    opacity: 1;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(20, 32, 51, 0.5) 0%, rgba(15, 23, 36, 0.8) 100%);
}

.product-card:hover .product-info {
    background: linear-gradient(180deg, rgba(20, 32, 51, 0.8) 0%, rgba(15, 23, 36, 1) 100%);
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    background: linear-gradient(90deg, #ffffff 0%, #e0e8f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-price-row {
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-pln {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0066cc, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.price-old {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 0.9rem;
    margin-right: 8px;
    opacity: 0.7;
}

.price-discounted {
    color: #10b981;
}

.price-eur {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

.buy-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.buy-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;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.buy-btn:hover::before {
    left: 100%;
}

/* HOW TO BUY SECTION */
.how-to-buy-section {
    padding: 40px 3%;
    width: 100%;
}

.how-to-buy-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    font-weight: 700;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    width: 175px;
    height: 175px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    margin: 0 10px;
}

/* CUSTOM TC CARD */
.custom-tc-card .product-info {
    justify-content: space-between;
}

.tc-slider {
    width: 100%;
    margin: 15px 0;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 102, 204, 0.1) 100%);
    height: 6px;
    border-radius: 5px;
    outline: none;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.tc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.tc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.tc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.tc-input {
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 36, 0.8), rgba(10, 18, 30, 0.9));
    border: 1px solid rgba(0, 102, 204, 0.2);
    padding: 12px 15px;
    border-radius: 10px;
    color: white;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.3s;
}

.tc-input:focus {
    outline: none;
    border-color: rgba(0, 102, 204, 0.5);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.2);
    background: linear-gradient(135deg, rgba(15, 23, 36, 1), rgba(10, 18, 30, 1));
}

/* TOOLS UI */
.tools-section {
    padding: 40px 3%;
    width: 100%;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 3%;
}

.tool-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    backdrop-filter: blur(10px);
    position: relative;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
}

.tool-card:hover {
    transform: scale(1.02);
    border-color: rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2), 0 0 40px rgba(0, 102, 204, 0.1);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.15);
}

.tool-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.3px;
    background: linear-gradient(90deg, #ffffff 0%, #e0e8f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tool-result-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    max-width: 900px;
    margin: 40px auto 0;
    backdrop-filter: blur(10px);
    display: none;
}

.tool-result-container.active {
    display: block;
    animation: slideUp 0.3s ease;
}

.tool-result-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.3);
    padding-bottom: 15px;
}

.tool-result-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff 0%, #e0e8f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.tool-box {
    max-width: 700px;
}

.tool-form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tool-row {
    display: flex;
    gap: 15px;
}

.tool-col {
    flex: 1;
}

.tool-input-wrapper {
    position: relative;
    margin-bottom: 5px;
}

.tool-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.tool-label img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s;
}

.tool-label img:hover {
    transform: scale(1.2);
}

.tool-input {
    width: 100%;
    background: #0f1724;
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.tool-input:focus {
    outline: none;
    border-color: var(--accent);
}

.tool-select {
    width: 100%;
    background: #0f1724;
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.tool-checkbox-group {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 5px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 8px;
}

.tool-checkbox-group label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.tool-result-modern {
    margin-top: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    animation: slideUp 0.3s ease;
    display: none;
}

.tool-result-modern.visible {
    display: block;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 5px 0;
}

.result-label {
    font-size: 0.9rem;
    color: #a0aec0;
}

.bless-list {
    text-align: left;
    width: 100%;
    font-size: 0.95rem;
}

.bless-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bless-row:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 10px;
}

.loot-textarea {
    width: 100%;
    height: 150px;
    background: #0f1724;
    border: 1px solid var(--border-color);
    color: white;
    padding: 10px;
    border-radius: 8px;
    resize: vertical;
    font-family: monospace;
    font-size: 0.85rem;
}

.copy-btn-small {
    background: #333;
    color: white;
    border: 1px solid #555;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.copy-btn-small:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* OTHER VIEWS */
.channels-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.channel-col {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.channel-header {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.platform-header-icon {
    height: 28px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--glass-bg);
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.channel-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.platform-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 5px;
}

.traders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.trader-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.trader-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
}

.trader-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #10b981;
}

.trader-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.trader-status {
    color: #10b981;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payments-section {
    padding: 40px 3%;
    width: 100%;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #fff, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payment-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    cursor: default;
}

.payment-card:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.payment-icon {
    width: 100%;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* PRODUCTS SECTION */
.products-section {
    padding: 40px 3%;
    width: 100%;
}

/* FAQ SECTION */
.faq-section {
    padding: 60px 0;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #fff, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 20px;
    color: var(--text-muted);
}

.faq-answer.open {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

#faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-start;
}

.promo-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.promo-card:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15), 0 0 40px rgba(245, 158, 11, 0.08);
}

.promo-input {
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: linear-gradient(135deg, rgba(15, 23, 36, 0.8), rgba(10, 18, 30, 0.9));
    color: white;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.promo-input:focus {
    outline: none;
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.promo-check-btn {
    width: 100%;
    margin-top: 10px;
    padding: 11px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.promo-check-btn:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

/* FOOTER */
.footer {
    background-color: var(--bg-sidebar);
    color: var(--text-muted);
    padding: 15px 3% 10px 3%;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
    width: 95%;
    margin: 0 auto 15px auto;
    align-items: center;
}

.footer-col h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 2px;
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.nip-text a,
.reseller-info a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dotted var(--text-muted);
    transition: color 0.2s;
}

.nip-text a:hover,
.reseller-info a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.footer-contact a.contact-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.2s;
}

.footer-contact a.contact-link:hover {
    color: var(--accent);
}

.footer-img-container {
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-img-container img {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.reseller-info {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.footer-bank {
    text-align: left;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    justify-self: end;
    width: 100%;
    max-width: 450px;
}

.bank-row {
    margin-bottom: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.bank-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bank-row .footer-label {
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.7;
    font-weight: 600;
}

.iban-text {
    font-family: monospace;
    letter-spacing: 0.5px;
    color: var(--iban-color);
    font-weight: 700;
    word-break: break-all;
    font-size: 0.9rem;
}

.copy-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.7;
    flex-shrink: 0;
    margin-left: auto;
}

.copy-icon:hover {
    opacity: 1;
    background: rgba(0, 102, 204, 0.2);
    transform: scale(1.15);
}

.copy-icon.copied {
    opacity: 1;
    background: rgba(16, 185, 129, 0.3);
}

/* TOAST NOTIFICATION */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.5);
    animation: toastSlideUp 0.3s ease forwards, toastSlideDown 0.3s ease 2.7s forwards;
    z-index: 3000;
    pointer-events: none;
}

@keyframes toastSlideUp {
    from {
        transform: translateX(-50%) translateY(120px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes toastSlideDown {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(120px);
        opacity: 0;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    opacity: 0.7;
}

/* MODALS */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.modal-box {
    background: #142033;
    border: 1px solid var(--accent);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    max-width: 600px;
    width: 100%;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}

.modal-close-btn:hover {
    color: white;
}

.trader-description {
    margin-top: 15px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    width: 100%;
}

/* MOBILE NAV */
#mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-sidebar);
    border-top: 2px solid var(--border-color);
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

#mobile-nav img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    cursor: pointer;
    border-radius: 50%;
    padding: 4px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#mobile-nav img:hover,
#mobile-nav img:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.15);
}

#mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto !important;
}

#mobile-nav a img {
    width: 48px;
    height: 48px;
    pointer-events: auto !important;
}

#mobile-home {
    border-radius: 0;
}

#mobile-scroll-up {
    filter: brightness(1.2);
}

/* GAMES */
.game-tile {
    background-size: cover;
    background-position: center;
}

#game-embed-container {
    width: 100%;
    height: calc(100vh - 150px);
    overflow: hidden;
}

#game-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* DESKTOP ONLY - Hide mobile nav on large screens */
@media (min-width: 901px) {
    #mobile-nav {
        display: none !important;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .sidebar {
        display: none;
    }

    /* MOBILE NAV - Show on mobile */
    #mobile-nav {
        display: flex !important;
    }

    .main-content,
    .sidebar.expanded + .main-content {
        margin-left: 0;
        width: 100%;
        padding-bottom: 80px;
    }

    .header {
        justify-content: center;
        padding: 12px 15px;
    }

    .header-center,
    .header-right {
        display: none;
    }

    .header-left img {
        height: 50px;
    }

    .mobile-logo-text {
        display: block;
        font-size: 1.3rem;
    }

    /* MENU GRID - Mobile */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding-top: 20px;
    }

    .menu-tile {
        min-height: 140px;
        padding: 15px;
        border-radius: 15px;
    }

    .menu-tile:hover {
        transform: translateY(-5px);
    }

    .menu-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .menu-title {
        font-size: 1rem;
        font-weight: 600;
    }

    /* THANK YOU CARD - Mobile */
    .thank-you-card {
        padding: 25px 15px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .thank-you-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .thank-you-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* PRODUCTS GRID - Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 2%;
    }

    .products-section {
        padding: 30px 0;
    }

    .product-card {
        border-radius: 15px;
    }

    .product-img-wrapper {
        height: 180px;
        padding: 20px;
    }

    .product-img {
        max-width: 85%;
        max-height: 85%;
    }

    .product-info {
        padding: 16px;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-desc {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .product-price-row {
        margin-bottom: 12px;
        padding-top: 12px;
    }

    .price-pln {
        font-size: 1.2rem;
    }

    .price-eur {
        font-size: 0.75rem;
    }

    .buy-btn {
        padding: 11px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    /* PACC SELECT - Mobile */
    .pacc-select {
        font-size: 0.85rem;
        padding: 7px 10px;
    }

    .pacc-info {
        font-size: 0.8rem;
        margin-top: 6px;
    }

    /* TOOLS GRID - Mobile */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        padding: 0 2%;
        margin-bottom: 30px;
    }

    .tool-card {
        padding: 20px 15px;
        min-height: 160px;
    }

    .tool-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .tool-name {
        font-size: 0.85rem;
    }

    .tool-result-container {
        padding: 20px;
        margin: 30px 2% 0;
        max-width: 100%;
    }

    .tool-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .tool-select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .tool-label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .tool-result-modern {
        padding: 15px;
        margin-top: 15px;
    }

    .result-value {
        font-size: 1.3rem;
    }

    /* FAQ CONTAINER - Mobile */
    #faq-container,
    .channels-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-answer.open {
        padding: 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .faq-section {
        padding: 40px 2%;
        width: 100%;
        max-width: 100%;
    }

    /* TRADERS GRID - Mobile */
    .traders-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trader-card {
        padding: 15px;
    }

    .trader-img {
        width: 70px;
        height: 70px;
    }

    .trader-name {
        font-size: 1rem;
    }

    /* FOOTER - Mobile */
    .footer {
        padding: 12px 3% 8px 3%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        width: 100%;
        margin: 0 auto 10px auto;
    }

    .footer-col h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-contact p {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .footer-img-container {
        padding: 0;
    }

    .footer-img-container img {
        max-width: 100%;
        max-height: 200px;
    }

    .footer-bank {
        padding: 12px;
        max-width: 100%;
    }

    .bank-row {
        margin-bottom: 6px;
        font-size: 0.8rem;
    }

    .bank-row > div {
        gap: 1px;
    }

    .bank-row .footer-label {
        font-size: 0.7rem;
    }

    .iban-text {
        font-size: 0.8rem;
    }

    .copy-icon {
        font-size: 0.9rem;
        padding: 3px 6px;
    }

    .footer-bottom {
        font-size: 0.7rem;
        padding-top: 8px;
    }

    /* HOW TO BUY - Mobile */
    .steps-container {
        flex-direction: column;
        gap: 12px;
    }

    .step-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 140px;
        padding: 15px;
        border-radius: 12px;
    }

    .step-number {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }

    .step-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .step-arrow {
        display: none;
    }

    /* MODAL - Mobile */
    .modal-box,
    .profile-box {
        width: 95%;
        padding: 25px;
        max-width: 95vw;
    }

    .modal-close-btn {
        font-size: 24px;
    }

    /* PAYMENTS GRID - Mobile */
    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .payment-card {
        padding: 15px 8px;
        border-radius: 10px;
    }

    .payment-icon {
        height: 40px;
        margin-bottom: 8px;
    }


    /* CHANNELS - Mobile */
    .channel-item {
        padding: 12px;
        margin-bottom: 8px;
    }

    .channel-avatar {
        width: 40px;
        height: 40px;
    }

    .channel-header {
        font-size: 1.2rem;
        gap: 10px;
    }

    .platform-header-icon {
        height: 24px;
    }

    /* SECTION TITLE - Mobile */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .faq-section {
        padding: 40px 2%;
        width: 100%;
        max-width: 100%;
    }

    /* CONTENT CONTAINER - Mobile */
    #content-container {
        padding: 25px 2%;
    }

    /* CUSTOM TC - Mobile */
    .tc-input {
        font-size: 1.2rem;
        padding: 10px 12px;
    }

    .tc-slider {
        margin: 12px 0;
    }

    /* TOAST - Mobile */
    .toast-notification {
        bottom: 90px;
        padding: 16px 32px;
    }
}

/* VERY SMALL SCREENS - Mobile phones (max 600px) */
@media (max-width: 600px) {
    #content-container {
        padding: 15px 1%;
    }

    .header {
        padding: 10px 10px;
    }

    .header-left img {
        height: 45px;
    }

    .mobile-logo-text {
        font-size: 1.1rem;
    }

    /* MENU GRID - Very Small */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 15px;
    }

    .menu-tile {
        min-height: 120px;
        padding: 12px;
    }

    .menu-icon {
        width: 40px;
        height: 40px;
    }

    .menu-title {
        font-size: 0.95rem;
    }

    /* THANK YOU CARD - Very Small */
    .thank-you-card {
        padding: 15px 10px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .thank-you-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .thank-you-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* PRODUCTS - Very Small */
    .product-img-wrapper {
        height: 160px;
    }

    .product-title {
        font-size: 1rem;
    }

    .price-pln {
        font-size: 1.1rem;
    }

    .buy-btn {
        padding: 10px;
        font-size: 0.8rem;
    }

    .products-grid {
        gap: 12px;
        padding: 0 1%;
    }

    .products-section {
        padding: 20px 0;
    }

    /* TOOLS - Very Small */
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 1%;
        margin-bottom: 20px;
    }

    .tool-card {
        padding: 15px 12px;
        min-height: 140px;
    }

    .tool-icon {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .tool-name {
        font-size: 0.8rem;
    }

    .tool-result-container {
        padding: 15px;
        margin: 20px 1% 0;
    }

    .tool-result-title {
        font-size: 1.2rem;
    }

    .tool-form-container {
        gap: 12px;
    }

    .tool-row {
        gap: 10px;
    }

    /* FOOTER - Very Small */
    .footer {
        padding: 10px 2% 5px 2%;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer-col h3 {
        font-size: 0.85rem;
    }

    .footer-contact p {
        font-size: 0.75rem;
    }

    /* MOBILE NAV - Very Small */
    #mobile-nav {
        padding: 8px 5px;
    }

    #mobile-nav img {
        width: 42px;
        height: 42px;
        padding: 3px;
    }

    /* MODALS - Very Small */
    .modal-box {
        width: 98%;
        padding: 20px;
    }

    /* PAYMENTS - Very Small */
    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .payment-card {
        padding: 12px 6px;
    }

    .payment-icon {
        height: 35px;
    }


    /* HOW TO BUY - Very Small */
    .step-card {
        min-height: 130px;
        padding: 12px;
    }

    .step-number {
        font-size: 1.6rem;
        width: 42px;
        height: 42px;
    }

    .step-card p {
        font-size: 0.75rem;
    }

    /* FAQ - Very Small */
    .faq-question {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* SECTION TITLES - Very Small */
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .faq-section {
        padding: 30px 1%;
        width: 100%;
    }

    /* TRADERS - Very Small */
    .trader-card {
        padding: 12px;
    }

    .trader-img {
        width: 65px;
        height: 65px;
    }

    /* CUSTOM TC - Very Small */
    .tc-input {
        font-size: 1.1rem;
        padding: 9px 10px;
    }

    .promo-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .promo-check-btn {
        padding: 10px;
        font-size: 0.8rem;
    }

    /* TOAST - Very Small */
    .toast-notification {
        bottom: 90px;
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 90%;
        left: 50%;
        transform: translateX(-50%) translateY(120px);
    }

    /* BANK ROW - Very Small */
    .bank-row {
        margin-bottom: 5px;
        gap: 4px;
    }

    .bank-row > div {
        min-width: 0;
    }

    .copy-icon {
        font-size: 0.85rem;
        padding: 2px 4px;
    }
}
