@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Oswald:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=VT323&display=swap');

:root {
    --bg-dark: #080808;
    --bg-panel: #111111;
    --text-main: #ffffff;
    --text-muted: #666666;
    --accent-gold: #D4C4A8;
    --gold-primary: #D4AF37; /* Gollar Gold */
    --grid-line: rgba(255, 255, 255, 0.15);
    
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-mono: 'VT323', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
a:hover { color: var(--accent-gold); }

.uppercase { text-transform: uppercase; }
.flex { display: flex; }
.grid { display: grid; }

.layout-container {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    min-height: 100vh;
    border-bottom: 1px solid var(--grid-line);
}

/* --- Sidebar --- */
.sidebar {
    border-right: 1px solid var(--grid-line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0;
    align-items: center;
    position: sticky;
    top: 0;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 100;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-mark img {
    width: 100%;
    height: auto;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- Main Content --- */
.main-content {
    border-right: 1px solid var(--grid-line);
    position: relative;
    background-color: var(--bg-dark);
}

.hero {
    height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
        url('https://images.unsplash.com/photo-1610375461268-20d0f77249a5?q=80&w=2574&auto=format&fit=crop') center/cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-col {
    padding-right: 40px;
}

.hero-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-img-col img {
    max-height: 60vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
    animation: float 6s ease-in-out infinite;
}

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

/* Override previous hero-image styles if any remain */
.hero-image {
    display: none; 
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--grid-line);
    color: var(--accent-gold);
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 200;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-item {
    font-family: var(--font-display);
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    margin: 15px 0;
    letter-spacing: 2px;
}

.mobile-nav-item:hover {
    color: var(--accent-gold);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    /* Sidebar update for menu */
    .sidebar {
        justify-content: space-between;
        padding: 20px;
        flex-direction: row;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
    }
    
    .menu-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        text-align: center;
        gap: 18px;
        padding-top: 0;
    }
    
    .hero-text-col {
        padding-right: 0;
        order: 1;
    }
    
    .hero-img-col {
        display: flex;
        order: 2;
        justify-content: center;
        align-items: center;
        height: auto;
        margin-top: 14px;
    }
    
    .hero-img-col img {
        max-height: 300px;
        width: auto;
        filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    }
    
    .hero {
        height: auto !important;
        min-height: unset !important;
        padding: 28px 20px 24px;
        display: block;
    }
    
    .hero-meta {
        position: relative;
        top: auto;
        left: auto;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 14px;
        font-size: 10px;
        margin-bottom: 18px;
        padding: 0 6px;
    }

    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 0px;
        text-align: center;
        line-height: 0.95;
        width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        margin-top: 10px;
        max-width: 520px;
        border-left: none;
        padding-left: 0;
    }

    .vertical-text {
        display: none;
    }
}

.hero-meta {
    position: absolute;
    top: 40px;
    left: 60px;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--accent-gold);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
    color: #ccc;
    border-left: 1px solid var(--accent-gold);
    padding-left: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .hero-meta {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 14px;
        font-size: 10px;
        margin-bottom: 18px;
        padding: 0 6px;
        width: 100%;
    }
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
}

.stat-item {
    padding: 40px;
    border-right: 1px solid var(--grid-line);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-sub {
    font-size: 12px;
    color: white;
    margin-top: 10px;
    display: block;
}

/* --- Catalog / Features --- */
.catalog-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-card {
    min-height: 400px;
    border-right: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    background-color: #0a0a0a;
}

.product-card:hover {
    filter: brightness(1.2);
    background-color: #111;
}

.p-id {
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--accent-gold);
}

.p-content {
    position: relative;
    z-index: 2;
}

.p-title {
    font-family: var(--font-display);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.p-desc {
    font-family: var(--font-body);
    font-size: 13px;
    opacity: 0.7;
    color: #ccc;
    max-width: 80%;
}

/* --- Right Panel --- */
.right-panel {
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.nav-item {
    padding: 30px;
    border-bottom: 1px solid var(--grid-line);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item:hover {
    color: var(--accent-gold);
}

.nav-item span:last-child {
    opacity: 0.3;
}

.market-ticker {
    flex-grow: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticker-item {
    margin-bottom: 20px;
}
.ticker-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}
.ticker-val {
    font-size: 18px;
    font-family: var(--font-display);
    color: var(--text-main);
}

.ticker-sparkline {
    width: 100%;
    height: 96px;
    display: block;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    cursor: pointer;
}

.sidebar-ad {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid var(--grid-line);
}

.sidebar-ad img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--accent-gold);
}

/* Lottery Modal */
.lottery-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lottery-modal-overlay.active {
    display: flex;
}

.lottery-modal-card {
    position: relative;
    width: min(600px, 95vw);
    max-width: 600px;
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
}

.lottery-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lottery-bg {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

.lottery-modal-close {
    position: absolute;
    right: 0;
    top: -40px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 310;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content Overlay */
.lottery-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 305;
}

.lottery-result-text {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: bold;
    color: #FFD881;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    white-space: pre-line;
}

.lottery-unit {
    font-family: var(--font-display);
    font-size: 28px;
    color: #FFD881;
    margin-top: 5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.lottery-claim-btn {
    position: absolute;
    bottom: 14%; /* Moved up from 11% */
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Increased from 60% */
    height: 100px; /* Increased from 70px */
    background: transparent;
    border: none;
    color: transparent;
    cursor: pointer;
    z-index: 310;
}

.lottery-claim-btn:disabled {
    filter: grayscale(100%);
    cursor: not-allowed;
}

.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal-content {
    width: min(920px, 92vw);
    background: #000;
    border: 1px solid var(--grid-line);
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--grid-line);
    color: #fff;
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
}

.video-modal-video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
}

.social-links {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--accent-gold);
}

.social-link svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

/* --- Inquiry / WhatsApp --- */
.inquiry-section {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--grid-line);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: linear-gradient(to right, #080808, #0c0c0c);
}

.cta-header {
    font-family: var(--font-display);
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
}

.cta-btn {
    background: transparent;
    border: 1px solid var(--grid-line);
    color: white;
    padding: 16px 32px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

/* WhatsApp Form Styles */
.wa-form-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 600px;
}

.wa-input, .wa-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--grid-line);
    color: #fff;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.wa-input:focus {
    border-color: var(--accent-gold);
}

.wa-btn {
    background: var(--accent-gold);
    color: #000;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.wa-btn:hover {
    background: #fff;
}

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

.animate {
    animation: fadeIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* --- Buy Page Specific Styles --- */
.buy-container {
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.vault-card {
    background: #D4C4A8;
    border-radius: 4px;
    padding: 30px;
    color: #000;
    margin-bottom: 30px;
    border: 1px solid var(--accent-gold);
}

.vault-card .card-label {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.vault-balance-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.vault-fiat-value {
    font-family: var(--font-mono);
    font-size: 20px;
    opacity: 0.8;
}

.price-list {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-family: var(--font-mono);
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--grid-line);
    color: #fff;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--accent-gold);
}

.form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--grid-line);
    color: #fff;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    appearance: none;
}

.btn-buy {
    width: 100%;
    background: var(--accent-gold);
    color: #000;
    border: none;
    padding: 20px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 20px;
}

.btn-buy:hover {
    background: #fff;
}

.btn-buy.is-connect {
    background: #fff;
    color: #000;
}

.btn-buy.is-connect:hover {
    background: #fff;
}

.btn-buy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gold-bar-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
    margin-top: 15px;
    width: 100%;
}

.gold-bar-item {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: contain;
}

.receipt-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--grid-line);
    padding: 20px;
    margin-top: 30px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    display: none;
}

.receipt-text {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 12px;
    resize: none;
    outline: none;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .layout-container {
        grid-template-columns: 60px 1fr;
    }
    .right-panel {
        display: none; /* Hide right panel on tablet, move content to bottom? */
    }
    .sidebar {
        justify-content: space-between;
        padding: 20px;
        flex-direction: row;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
    }
    .menu-toggle {
        display: block;
    }
    .vertical-text {
        display: none;
    }
    .hero-image {
        right: -10%;
        opacity: 0.5;
    }
    /* Add a mobile menu or move right panel content to main content bottom */
    .inquiry-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .layout-container {
        grid-template-columns: 1fr;
    }
    .sidebar {
        height: auto;
        flex-direction: row;
        padding: 20px;
        position: relative;
        border-bottom: 1px solid var(--grid-line);
        border-right: none;
    }
    .vertical-text {
        display: none;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
    }
    .catalog-section {
        grid-template-columns: 1fr;
    }
    .product-card {
        border-right: none;
        min-height: 300px;
    }
    .right-panel {
        display: none; /* Still hide, maybe show as footer */
    }
    .buy-container {
        padding: 30px 20px;
    }
}

/* Contract Box */
.contract-box {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid var(--grid-line);
    background: rgba(0,0,0,0.5);
}
.contract-addr {
    font-family: var(--font-mono);
    color: var(--accent-gold);
    font-size: 12px;
    word-break: break-all;
    cursor: pointer;
}

/* --- Market Page Styles --- */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 60px;
    border-bottom: 1px solid var(--grid-line);
}

/* Market Data Stats */
.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-family: var(--font-mono);
}

.stat-row span:last-child {
    color: var(--accent-gold);
}

.news-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    line-height: 1.4;
}

.news-item a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
    font-family: var(--font-body);
}

.news-item a:hover {
    color: var(--accent-gold);
}

.market-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.market-value {
    font-size: 32px;
    font-family: var(--font-display);
    margin: 10px 0 5px 0;
    color: #fff;
}

.market-sub {
    font-family: var(--font-mono);
    font-size: 14px;
}

.data-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--grid-line);
}

.data-col {
    padding: 40px 60px;
    border-right: 1px solid var(--grid-line);
}

.data-col:last-child {
    border-right: none;
}

.data-header {
    font-family: var(--font-display);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #fff;
}

@media (max-width: 768px) {
    .market-grid {
        padding: 30px 20px;
        grid-template-columns: 1fr;
    }
    .data-section {
        grid-template-columns: 1fr;
    }
    .data-col {
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
    }
    
    .section-padding {
        padding: 30px 20px !important;
    }
}

.section-padding {
    padding: 60px;
}

.intro-text {
    font-family: var(--font-serif);
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 18px;
    }
}

/* Price Change Indicators */
.price-up {
    color: #30D158;
}

.price-down {
    color: #FF453A;
}

.arrow {
    display: inline-block;
    margin-right: 4px;
}
