:root {
    --primary: #0088CC;
    --primary-hover: #339FD9;
    --secondary: #0088CC;
    --bg-color: #0a0a2a;
    --text-color: #FFFFFF;
    --light-gray: #1a1a4a;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    -webkit-tap-highlight-color: transparent; 
    -webkit-touch-callout: none;             
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
font-family: 'Comic Neue', 'Comic Sans MS', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    line-height: normal;
    appearance: none;     /* убирает нативный вид в Chrome/Safari */
    -webkit-appearance: none; /* для Safari */
    -moz-appearance: none;    /* для Firefox */
    cursor: pointer;
}


/* Star Wars Theme Elements */
#cosmic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 50%, #2a2a6a 100%);
}

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
            radial-gradient(2px 2px at 40px 60px, #fff, transparent),
            radial-gradient(2px 2px at 20px 50px, #eee, transparent),
            radial-gradient(1px 1px at 30px 100px, #fff, transparent),
            radial-gradient(1px 1px at 50px 80px, #fff, transparent),
            radial-gradient(2px 2px at 80px 70px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: starfieldMove 100s linear infinite;
}

@keyframes starfieldMove {
    from { background-position: 0 0; }
    to { background-position: 1000px 1000px; }
}

.sw-header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary);
    padding-right: 5px;
    padding-left: 5px;
}

.sw-section {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    margin: 20px 0;
    border-radius: 15px;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.sw-card {
    background: rgba(0, 136, 204, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.sw-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 136, 204, 0.1), transparent);
    transform: rotate(45deg);
    animation: holographic 3s linear infinite;
}

@keyframes holographic {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.sw-btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-hover));
    border: none;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.sw-btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: bold;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.sw-btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.sw-select {
    padding: 8px 12px;
    border: 1px solid var(--primary);
    border-radius: var(--border-radius);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-color);
font-family: 'Comic Neue', 'Comic Sans MS', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    font-weight: 700;
    cursor: pointer;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    transition: all 0.3s ease;
}

.sw-select:hover {
    background-color: #1a1a4a;   /* фон при наведении */
    border-color: #339FD9;       /* подсветка рамки */
}

.sw-select:focus {
    outline: none;
    box-shadow: 0 0 6px #0088CC;
}

/* Опции внутри меню */
.sw-select option {
    background-color: #0a0a2a;
    color: #fff;
    border-radius: 8px;   /* работает только в некоторых браузерах */
    padding: 6px 10px;
    border: 1px solid var(--primary);
}

.sw-select option:hover {
    background-color: #0088CC;
    color: #fff;
}

.sw-select option:checked {
    background-color: #339FD9;
    color: #fff;
}

/* Lightsaber Elements */
.lightsaber {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 4px 0;
    transition: var(--transition);
    position: relative;
}

.lightsaber::after {
    content: none;
    /* Removed blue overlay lines on menu button bars */
}

.mobile-menu-toggle:hover .lightsaber::after {
    width: 15px;
}

.lightsaber-btn {
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
    padding: 15px 30px;
}

.lightsaber-blade {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: #00ff00;
    transition: width 0.3s ease;
}

.lightsaber-btn:hover .lightsaber-blade {
    width: 50px;
}

/* X-Wing Fighter */
.x-wing-fighter {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
}

.x-wing {
    width: 120px;
    height: 60px;
    background: linear-gradient(45deg, #ccc, #fff);
    position: relative;
    clip-path: polygon(0 50%, 20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%);
    animation: xwingFloat 15s ease-in-out infinite;
}

.x-wing::before, .x-wing::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 10px;
    background: #ccc;
    top: 50%;
    transform: translateY(-50%);
}

.x-wing::before {
    left: -40px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.x-wing::after {
    right: -40px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@keyframes xwingFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-2deg); }
}

/* Death Star */
.death-star {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 50% 50%, #666, #000);
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(0, 136, 204, 0.5), inset 0 0 50px rgba(0, 136, 204, 0.3);
    /* Удалено filter, добавлено свечение линии с помощью псевдоэлемента */
}

.death-star::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 50%;
    box-shadow: inset 0 0 20px #000;
}

/* Live Price Display */
.live-price {
    margin-top: 30px;
    padding: 15px;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid var(--primary);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.price-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    margin: 0 10px;
}

#price-change.up { color: #06a77d; }    /* зелёный */
#price-change.down { color: #e02f44; }  /* красный */
#price-change.neutral { color: #888; }

.price-change {
    font-weight: bold;
}

/* Wallet Button Styles */
#connectWallet {
    min-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

#connectWallet:hover {
    background-color: #339fd9;
}

#connectWallet.connected {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    border: 1px solid #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    color: black;
}

#connectWallet .fas.fa-check {
    margin-right: 8px;
    color: inherit;
}

#connectWallet.connected .wallet-address {
    font-family: 'Orbitron', monospace;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: black;
}

/* Original Styles with Star Wars enhancements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button.sw-btn-primary {
    color: white;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 25px;
}

@media (max-width: 972px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background-color: var(--bg-color);
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
        margin-left: 0;
    }

    .header-actions {
        margin-top: 10px;
        justify-content: flex-end;
        gap: 10px;
        display: flex;
        white-space: nowrap;
        margin: 10px;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
    font-family: 'Orbitron', 'Montserrat', 'Russo One', 'Roboto', 'Arial', sans-serif;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: var(--transition);
    font-size: 16px;
    position: relative;
    padding: 10px 15px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    color: white;
    border-radius: 0 0 30px 30px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Orbitron', 'Montserrat', 'Russo One', 'Roboto', 'Arial', sans-serif;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--bg-color);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section.about {
    padding: 20px 0 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
    position: relative;
    font-family: 'Orbitron', 'Montserrat', 'Russo One', 'Roboto', 'Arial', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
    min-width: 50%;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.secondary:hover {
    background-color: var(--primary);
    color: white;
}

.price-chart {
    flex: 1;
    width: 90%;
    height: 300px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
    flex-direction: column;
}
 

/* Purchase Section */
.purchase {
    text-align: center;
}

.exchange-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.exchange-link {
    display: inline-block;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: var(--transition);
}

/* Comic Section */
.comic-gallery {
    position: relative;
    max-width: 800px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 15px;
    padding: 0px;
}

.comic-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.comic-item {
    min-width: 100%;
    position: relative;
}

.comic-item img {
    width: 100%;
    height: auto;
    display: block;
}

.comic-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.comic-nav-btn {
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: all;
    border: 3px solid white;
    padding: 12px;
}

.comic-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.comic-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.comic-indicator.active {
    background: var(--primary);
    border: 2px solid white;
}

/* Community Section */
.community { 
    text-align: center;
}

.community p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.link-text {
    color: white; 
    transition: color 0.3s ease;
}
 

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FAQ Section */
.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

/* Roadmap Section */
.roadmap-visual {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 50px 0;
}

.roadmap-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    transform: translateY(-50%);
    z-index: 1;
}

.roadmap-item {
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: var(--border-radius);
    width: 30%;
    text-align: center;
}

.roadmap-date {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.whitepaper-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.whitepaper-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 40px 0 20px;
    background-color: #000000;
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-links {
    display: flex; 
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links .language-selector {
    margin: 0;
}
.footer-links .language-selector select {
    margin: 0;
}
.footer-links .connect-wallet-btn {
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-menu li {
        margin-left: 15px;
    }

    .exchange-links {
        gap: 20px;
    }
 
}

/* Mobile Responsiveness */
@media (max-width: 972px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background-color: var(--bg-color);
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
        border-bottom: 2px solid var(--primary);
        border-top: 2px solid var(--primary);
    }

    .nav-menu li {
        margin: 10px 0;
        margin-left: 0;
    }

    .header-actions {
        width: 100%;
        margin-top: 10px;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .roadmap-visual {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .roadmap-visual::before {
        display: none;
    }

    .roadmap-item {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .exchange-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .x-wing-fighter {
        display: none;
    }

    .death-star {
        right: -150px;
        bottom: -150px;
        width: 200px;
        height: 200px;
    }

    .comic-navigation {
        padding: 0 10px;
    }

    .comic-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Small Mobile Responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 80px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .exchange-link {
        padding: 12px 24px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Animation for comic slider */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.comic-item {
    animation: fadeIn 0.5s ease;
}

/* Исправляем стили для кнопки мобильного меню */
.mobile-menu-toggle {
    display: none; /* По умолчанию скрыта на десктопе */
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    background: rgba(0, 136, 204, 0.3);
    border-radius: 6px; 
    transition: background-color 0.3s ease;

    border: 1px solid var(--primary); 
}

.mobile-menu-toggle:focus,
.mobile-menu-toggle:active {
    outline: none;
    box-shadow: 0 0 6px #0088CC;
    background-color: #1a1a4a;   /* фон при наведении */
    border-color: #339FD9;       /* подсветка рамки */
}

/* Показываем кнопку только на мобильных устройствах */
@media (max-width: 972px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Улучшаем стили для линий бургер-меню */
.mobile-menu-toggle .lightsaber {
    display: block;
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: var(--transition);
    position: relative;
}

/* Делаем линии белыми при наведении */
.mobile-menu-toggle:hover .lightsaber {
    background: white;
}

/* Анимация для активного состояния (когда меню открыто) */
.mobile-menu-toggle.active .lightsaber:nth-child(1) {
    transform: none;
}

.mobile-menu-toggle.active .lightsaber:nth-child(2) {
    opacity: 1;
}

.mobile-menu-toggle.active .lightsaber:nth-child(3) {
    transform: none;
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(0,136,204,0.3);
    transition: max-height 0.4s ease;
}

/* Список */
.mobile-nav ul {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
}

/* Когда меню активно */
.mobile-nav.active {
    max-height: 400px; /* Достаточно для всех пунктов */
}

/* Показываем только на мобильных */
@media (min-width: 973px) {
    .mobile-nav {
        display: none;
    }
}

/* Блок цены */
#price-value {
    display: inline-block;
    min-width: 60px;       /* фиксируем ширину под максимум символов */
    text-align: center;     /* цифры аккуратно выравниваются справа */
}

/* Блок изменения (%) */
#price-change {
    display: inline-block;
    min-width:35px;       /* под "-100.00%" точно хватит */
    text-align: center;
}
