/* 
 * Defiway Bridge - Professional Crypto Interface
 * Enhanced with smooth animations, better mobile responsiveness, and modern design
 */

:root {
    /* Color Palette */
    --gray-05: #F1F2F4;
    --gray-10: #F8F8FC;
    --gray-15: #F2F2F9;
    --gray-20: #E7E7F3;
    --gray-25: #E4E4EF;
    --gray-30: #C7C8CB;
    --gray-40: #A4A8B0;
    --gray-50: #757C8B;
    --gray-80: #2E3138;
    --gray-90: #2B2C2E;
    --secondary: #8992A4;
    --accent: #5056F1;
    --accent-hover: #4349E0;
    --white: #ffffff;
    --success: #05A964;
    --error: #F94A74;
    
    /* Shadows */
    --shadow-card: 0px 8px 30px rgba(6, 12, 59, 0.03), 0px 0px 1px rgba(6, 12, 59, 0.08);
    --shadow-hover: 0px 0px 1px rgba(6, 12, 59, 0.12), 0px 8px 30px rgba(6, 12, 59, 0.08);
    --shadow-elevated: 0px 12px 40px rgba(6, 12, 59, 0.12), 0px 0px 1px rgba(6, 12, 59, 0.1);
    --shadow-dropdown: 0px 0px 2px 0px rgba(6, 12, 59, 0.15), 0px 8px 30px 0px rgba(6, 12, 59, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-primary-hover: linear-gradient(135deg, #5558e8 0%, #7c4fe8 100%);
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 20px;
    --spacing-2xl: 24px;
    --spacing-3xl: 32px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-05);
    min-height: 100vh;
    position: relative;
    color: var(--gray-90);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Background Gradient */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(240, 240, 245, 0.6) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-2xl);
    width: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.header-left {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

/* Icon Button */
.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--white);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    padding: 0;
    flex-shrink: 0;
}

.icon-btn:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.icon-btn:active {
    transform: translateY(0);
}

/* Apps Icon */
.apps-icon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    width: 18px;
    height: 18px;
}

.apps-icon span {
    width: 6px;
    height: 6px;
    background: var(--gray-90);
    border-radius: 50%;
    transition: transform var(--transition-normal);
}

.icon-btn:hover .apps-icon span:nth-child(1) { transform: translate(-1px, -1px); }
.icon-btn:hover .apps-icon span:nth-child(2) { transform: translate(1px, -1px); }
.icon-btn:hover .apps-icon span:nth-child(3) { transform: translate(-1px, 1px); }
.icon-btn:hover .apps-icon span:nth-child(4) { transform: translate(1px, 1px); }

/* Navigation Buttons */
.nav-btn {
    height: 44px;
    padding: 0 var(--spacing-xl);
    border-radius: var(--radius-full);
    border: none;
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-90);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-10);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.nav-btn.active {
    background: var(--white);
}

.nav-btn:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(80, 86, 241, 0.1);
}

.nav-btn span {
    position: relative;
    z-index: 1;
}

/* Login Button */
.login-btn {
    height: 36px;
    padding: 0 var(--spacing-xl);
    border-radius: var(--radius-full);
    border: none;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: var(--gradient-primary-hover);
}

.login-btn:active {
    transform: translateY(0);
}

/* Main Content */
.main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-3xl) var(--spacing-lg) 120px;
    min-height: calc(100vh - 76px);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Title Section */
.title-section {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    animation: slideDown 0.6s ease-out 0.1s backwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.title {
    font-size: 18px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.3px;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

.tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-60);
    text-align: center;
    margin: var(--spacing-sm) 0 var(--spacing-md);
    line-height: 1.5;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
    max-width: 400px;
}

.dots-decoration {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.dots-decoration span {
    width: 4px;
    height: 4px;
    background: var(--gray-30);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dots-decoration span:nth-child(2) { animation-delay: 0.1s; }
.dots-decoration span:nth-child(3) { animation-delay: 0.2s; }
.dots-decoration span:nth-child(4) { animation-delay: 0.3s; }
.dots-decoration span:nth-child(5) { animation-delay: 0.4s; }
.dots-decoration span:nth-child(6) { animation-delay: 0.5s; }
.dots-decoration span:nth-child(7) { animation-delay: 0.6s; }
.dots-decoration span:nth-child(8) { animation-delay: 0.7s; }
.dots-decoration span:nth-child(9) { animation-delay: 0.8s; }
.dots-decoration span:nth-child(10) { animation-delay: 0.9s; }
.dots-decoration span:nth-child(11) { animation-delay: 1.0s; }
.dots-decoration span:nth-child(12) { animation-delay: 1.1s; }

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Bridge Container */
.bridge-container {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    animation: scaleIn 0.5s ease-out 0.2s backwards, float 6s ease-in-out infinite;
    position: relative;
    z-index: 5;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Network Status Indicators */
.network-status {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success);
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(5, 169, 100, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.network-status.connecting {
    background: #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.network-status.offline {
    background: var(--error);
    box-shadow: 0 2px 8px rgba(249, 74, 116, 0.4);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    z-index: 10;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-2px);
    border-color: rgba(80, 86, 241, 0.2);
}

.card:hover::before {
    opacity: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-90);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
}

/* Selectors */
.selectors {
    display: flex;
    gap: var(--spacing-md);
}

.selector {
    flex: 1;
    position: relative;
}

.selector-btn {
    width: 100%;
    height: 56px;
    padding: 0 var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background: var(--gray-10);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: inherit;
    text-align: left;
}

.selector-btn:hover {
    background: var(--gray-15);
    border-color: var(--gray-20);
    box-shadow: 0 0 20px rgba(80, 86, 241, 0.1);
}

.selector-btn:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(80, 86, 241, 0.1);
}

.selector-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.selector-btn:hover .selector-icon {
    transform: scale(1.05);
}

.selector-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selector-icon.placeholder {
    background: var(--gray-20);
}

.selector-icon.placeholder svg {
    width: 20px;
    height: 20px;
    color: var(--gray-40);
}

.selector-info {
    flex: 1;
    min-width: 0;
}

.selector-label {
    font-size: 11px;
    color: var(--gray-40);
    display: block;
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selector-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-90);
    display: block;
    line-height: 1.3;
}

.chevron-down {
    width: 16px;
    height: 16px;
    color: var(--gray-40);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.selector.open .chevron-down {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: -8px;
    right: -8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dropdown);
    padding: var(--spacing-sm);
    z-index: 1000;
    display: none;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dropdown.show {
    display: block;
    animation: dropdownIn 0.2s ease;
}

@keyframes dropdownIn {
    from { 
        opacity: 0; 
        transform: translateY(-8px) scale(0.98); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--gray-10);
    transform: translateX(4px);
}

.dropdown-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.dropdown-item:hover img {
    transform: scale(1.1);
}

.dropdown-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-90);
}

/* Action Card */
.action-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
    animation: slideUp 0.5s ease-out 0.3s backwards;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.action-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-2px);
    border-color: rgba(80, 86, 241, 0.2);
}

.action-card:hover::before {
    opacity: 1;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.action-btn {
    width: 100%;
    height: 52px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--gray-10);
    color: var(--gray-40);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: not-allowed;
    transition: all var(--transition-normal);
}

.action-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.action-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
    background: var(--gradient-primary-hover);
}

.action-btn.active:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-2xl);
    z-index: 10;
    pointer-events: none;
    animation: fadeIn 0.5s ease-out 0.4s backwards;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer > * {
    pointer-events: auto;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 10px var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-90);
    transition: all var(--transition-normal);
}

.lang-selector:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.lang-selector svg {
    width: 14px;
    height: 14px;
    color: var(--gray-50);
    transition: transform var(--transition-normal);
}

.lang-selector:hover svg {
    transform: rotate(180deg);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.certik-badge {
    height: 28px;
    border-radius: 8px;
    filter: grayscale(0.1);
    transition: all var(--transition-normal);
}

.certik-badge:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

.telegram-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #29a9eb;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(41, 169, 235, 0.35);
    padding: 0;
}

.telegram-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(41, 169, 235, 0.5);
}

.telegram-btn:active {
    transform: translateY(0) scale(1);
}

.telegram-btn img {
    width: 20px;
    height: 20px;
    margin-left: 2px;
    transition: transform var(--transition-normal);
}

.telegram-btn:hover img {
    transform: translateX(2px);
}

/* Scrollbar Styling */
.dropdown::-webkit-scrollbar {
    width: 6px;
}

.dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown::-webkit-scrollbar-thumb {
    background: var(--gray-30);
    border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--gray-40);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
    .header {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .nav-btn {
        padding: 0 var(--spacing-lg);
        font-size: 13px;
    }
    
    .main {
        padding: var(--spacing-2xl) var(--spacing-lg) 100px;
    }
    
    .bridge-container {
        max-width: 100%;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--white);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    padding: 0;
    flex-shrink: 0;
}

.hamburger:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gray-90);
    border-radius: 2px;
    transition: all var(--transition-normal);
    position: relative;
}

.hamburger span::before,
.hamburger span::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--gray-90);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.hamburger span::before {
    top: -6px;
}

.hamburger span::after {
    top: 6px;
}

.hamburger.active span {
    background: transparent;
}

.hamburger.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active span::after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-normal);
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-10);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--gray-10);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--gray-20);
}

.mobile-menu-nav {
    padding: var(--spacing-lg);
}

.mobile-menu-nav .nav-btn {
    width: 100%;
    height: 48px;
    margin-bottom: var(--spacing-md);
    justify-content: flex-start;
    padding: 0 var(--spacing-lg);
}

/* Mobile */
@media (max-width: 480px) {
    .header {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .header-left .nav-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .icon-btn {
        width: 40px;
        height: 40px;
    }
    
    .apps-icon {
        width: 16px;
        height: 16px;
    }
    
    .apps-icon span {
        width: 5px;
        height: 5px;
    }
    
    .nav-btn {
        height: 40px;
        padding: 0 var(--spacing-md);
        font-size: 12px;
    }
    
    .login-btn {
        height: 32px;
        padding: 0 var(--spacing-lg);
        font-size: 12px;
    }
    
    .main {
        padding: var(--spacing-xl) var(--spacing-md) 100px;
    }
    
    .title {
        font-size: 16px;
    }
    
    .selectors {
        flex-direction: column;
    }
    
    .selector-btn {
        height: 52px;
    }
    
    .card {
        padding: var(--spacing-lg);
    }
    
    .action-card {
        padding: var(--spacing-lg);
    }
    
    .footer {
        padding: var(--spacing-md);
    }
    
    .lang-selector {
        padding: 8px var(--spacing-lg);
        font-size: 13px;
    }
    
    .certik-badge {
        height: 24px;
    }
    
    .telegram-btn {
        width: 40px;
        height: 40px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .header-left {
        gap: var(--spacing-sm);
    }
    
    .nav-btn {
        padding: 0 var(--spacing-sm);
    }
    
    .bridge-container {
        gap: var(--spacing-md);
    }
}


/* Print Styles */
@media print {
    .header, .footer {
        display: none;
    }
    
    .main {
        padding: 0;
    }
}
