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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a2e;
    color: #e0e0e0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Screens */
.screen {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screen.active {
    display: flex;
}

/* Buttons */
.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-primary {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Title Screen */
#screen-title {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(230, 126, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
}

.title-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

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

.title-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-content h1 span {
    color: #e67e22;
    font-size: 56px;
}

.subtitle {
    font-size: 20px;
    color: #999;
    margin-bottom: 40px;
}

/* Horse / Team Selection */
#screen-select {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 20px 30px;
    gap: 14px;
    overflow-y: auto;
}

#screen-select h2 {
    font-size: 32px;
    font-weight: 700;
}

.select-subtitle {
    font-size: 15px;
    color: #888;
}

.horse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 800px;
    width: 100%;
}

.horse-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.horse-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(230, 126, 34, 0.5);
    transform: translateY(-4px);
}

.horse-card.selected {
    background: rgba(230, 126, 34, 0.15);
    border-color: #e67e22;
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.2);
}

.select-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #e67e22;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.select-badge.hidden {
    display: none;
}

.horse-card-icon {
    font-size: 48px;
    margin-bottom: 6px;
}

.horse-card h3 {
    font-size: 18px;
    margin-bottom: 2px;
}

.horse-card .horse-tagline {
    font-size: 12px;
    color: #888;
}

.horse-speed-tag {
    font-size: 11px;
    color: #3498db;
    margin-top: 4px;
    font-weight: 600;
}

/* Horse Detail */
.horse-detail {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    transition: all 0.3s ease;
}

.horse-detail.hidden {
    display: none;
}

.detail-preview {
    flex-shrink: 0;
}

#horse-preview-canvas {
    border-radius: 12px;
    background: linear-gradient(180deg, #87CEEB 0%, #87CEEB 60%, #4a7c59 60%, #3d6b4a 100%);
}

.detail-info {
    flex: 1;
}

.detail-info h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: #e67e22;
}

.detail-info p {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.stats-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-label {
    width: 100px;
    font-size: 13px;
    color: #bbb;
}

.stat-bar-bg {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.stat-speed .stat-bar-fill { background: linear-gradient(90deg, #3498db, #2ecc71); }
.stat-jump .stat-bar-fill { background: linear-gradient(90deg, #e67e22, #f1c40f); }
.stat-stamina .stat-bar-fill { background: linear-gradient(90deg, #e74c3c, #e67e22); }
.stat-agility .stat-bar-fill { background: linear-gradient(90deg, #9b59b6, #3498db); }

.stat-value {
    width: 30px;
    text-align: right;
    font-weight: 600;
    font-size: 13px;
}

/* Team Preview */
.team-preview {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 20px;
}

.team-preview.hidden {
    display: none;
}

.team-preview-side {
    flex: 1;
    text-align: center;
}

.team-preview-side h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
}

.team-preview-vs {
    font-size: 22px;
    font-weight: 900;
    color: #e67e22;
    flex-shrink: 0;
}

.team-chips {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-horse-chip {
    background: rgba(230, 126, 34, 0.2);
    border: 1px solid rgba(230, 126, 34, 0.4);
    color: #e67e22;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.team-horse-chip.cpu-chip {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
    color: #3498db;
}

.team-warning {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
}

.team-warning.hidden {
    display: none;
}

.select-actions {
    display: flex;
    gap: 16px;
}

/* Difficulty Selection */
#screen-difficulty {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    gap: 30px;
}

#screen-difficulty h2 {
    font-size: 36px;
    font-weight: 700;
}

.difficulty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 750px;
    width: 100%;
}

.difficulty-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.difficulty-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(230, 126, 34, 0.5);
    transform: translateY(-4px);
}

.difficulty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.difficulty-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.difficulty-card p {
    font-size: 14px;
    color: #888;
}

/* Round Pick Screen */
#screen-round {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    gap: 20px;
}

#screen-round h2 {
    font-size: 36px;
    font-weight: 700;
}

.round-matchup {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 700px;
    width: 100%;
}

.round-side {
    flex: 1;
    text-align: center;
}

.round-side h4 {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.round-vs-label {
    font-size: 32px;
    font-weight: 900;
    color: #e67e22;
    align-self: center;
    margin-top: 40px;
}

.round-horses {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.round-horse-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.round-horse-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(230,126,34,0.4);
}

.round-horse-card.selected {
    background: rgba(230,126,34,0.15);
    border-color: #e67e22;
    box-shadow: 0 0 15px rgba(230,126,34,0.2);
}

.round-horse-name {
    font-size: 16px;
    font-weight: 700;
}

.round-horse-stats {
    font-size: 11px;
    color: #888;
    font-family: monospace;
}

.round-cpu-display {
    background: rgba(52,152,219,0.1);
    border: 2px solid rgba(52,152,219,0.3);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.round-score-summary {
    max-width: 600px;
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 16px;
}

.round-score-summary.hidden {
    display: none;
}

.score-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.score-round-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.score-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    padding-top: 6px;
    color: #e67e22;
}

.score-win {
    color: #2ecc71;
    font-weight: 600;
}

.score-lose {
    color: #e74c3c;
    font-weight: 600;
}

/* Race Screen */
#screen-race {
    background: #000;
    padding: 0;
}

#game-canvas {
    width: 100%;
    height: 100%;
}

#race-hud {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 20px;
    pointer-events: none;
}

.hud-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hud-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.hud-value {
    font-size: 22px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.hud-stamina {
    flex: 1;
    max-width: 250px;
}

.stamina-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-top: 4px;
    overflow: hidden;
}

.stamina-fill {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #2ecc71);
    border-radius: 5px;
    transition: width 0.1s linear;
    width: 100%;
}

.countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 40px rgba(230, 126, 34, 0.8);
    animation: countPulse 0.5s ease;
    z-index: 10;
}

.countdown.hidden {
    display: none;
}

@keyframes countPulse {
    0% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.control-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 24px;
    pointer-events: none;
}

.control-hint.hidden {
    display: none;
}

.control-hint span {
    font-size: 14px;
    color: #aaa;
    white-space: nowrap;
}

/* CPU HUD */
.hud-cpu {
    margin-left: auto;
}

.hud-cpu-name {
    font-size: 16px !important;
}

.hud-cpu-status {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

/* Results Screen */
#screen-results {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.results-content {
    text-align: center;
    animation: fadeInUp 0.6s ease;
    max-width: 750px;
    width: 100%;
    padding: 0 20px;
}

.results-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.result-diff {
    font-size: 20px;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 20px;
}

.results-comparison {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.results-vs {
    font-size: 28px;
    font-weight: 900;
    color: #e67e22;
    flex-shrink: 0;
}

.results-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    flex: 1;
    min-width: 0;
}

.results-card h3 {
    font-size: 20px;
    margin-bottom: 2px;
    color: #e0e0e0;
}

.results-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 12px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-row:last-child {
    border-bottom: none;
}

.result-row.total {
    font-size: 18px;
    font-weight: 700;
    color: #e67e22;
    border-top: 2px solid rgba(230, 126, 34, 0.3);
    margin-top: 4px;
    padding-top: 10px;
}

.result-row.total.winner {
    color: #2ecc71;
}

.results-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Final Results Screen */
#screen-final {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.final-subtitle {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 24px;
}

.final-teams-header {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 12px;
    max-width: 600px;
    width: 100%;
    margin-bottom: 8px;
}

.final-header-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    text-align: center;
}

.final-rounds {
    max-width: 600px;
    width: 100%;
    margin-bottom: 12px;
}

.final-round-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}

.final-round-num {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

.final-round-player,
.final-round-cpu {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
}

.final-round-player.round-won,
.final-round-cpu.round-won {
    background: rgba(46,204,113,0.1);
    border-color: rgba(46,204,113,0.3);
}

.final-horse-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.final-round-time {
    display: block;
    font-size: 13px;
    color: #aaa;
}

.final-totals {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 12px;
    max-width: 600px;
    width: 100%;
    padding: 14px 0;
    border-top: 2px solid rgba(230,126,34,0.3);
    margin-bottom: 24px;
    align-items: center;
}

.final-total-label {
    font-size: 13px;
    font-weight: 700;
    color: #e67e22;
}

.final-total-value {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: #e0e0e0;
}

.final-total-value.final-winner {
    color: #2ecc71;
}

/* Scrollable screens (for mobile) */
.screen-scrollable {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
}

/* Help Button */
.btn-help {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-help:hover {
    background: rgba(230,126,34,0.6);
    border-color: #e67e22;
}

/* Help Overlay */
.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.help-overlay.hidden {
    display: none;
}

.help-content {
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.help-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #e67e22;
}

.btn-close-help {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.btn-close-help:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.help-section {
    margin-bottom: 20px;
}

.help-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 6px;
}

.help-section p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 4px;
}

.help-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.help-control-group h4 {
    font-size: 14px;
    color: #e67e22;
    margin-bottom: 6px;
}

.help-control-group p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
}

.help-obstacles {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.help-obs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #bbb;
}

.help-obs-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Touch Controls */
.touch-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 20;
    pointer-events: auto;
}

.touch-controls.hidden {
    display: none;
}

.touch-btn {
    flex: 1;
    padding: 22px 10px;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    transition: background 0.1s;
}

.touch-jump {
    background: rgba(46,204,113,0.35);
    color: #2ecc71;
    border-color: rgba(46,204,113,0.5);
}

.touch-jump:active {
    background: rgba(46,204,113,0.6);
}

.touch-duck {
    background: rgba(52,152,219,0.35);
    color: #3498db;
    border-color: rgba(52,152,219,0.5);
}

.touch-duck:active {
    background: rgba(52,152,219,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-help {
        width: 36px;
        height: 36px;
        font-size: 18px;
        top: 12px;
        right: 12px;
    }

    .help-content {
        padding: 20px;
    }

    .help-controls {
        grid-template-columns: 1fr;
    }

    #race-hud {
        gap: 8px;
        top: 8px;
        left: 8px;
        right: 8px;
    }

    .hud-item {
        padding: 6px 10px;
        border-radius: 8px;
    }

    .hud-value {
        font-size: 16px;
    }

    .hud-label {
        font-size: 9px;
    }

    .hud-cpu-name {
        font-size: 13px !important;
    }
    .title-content h1 {
        font-size: 40px;
    }

    .title-content h1 span {
        font-size: 36px;
    }

    .horse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .horse-card {
        padding: 14px;
    }

    .horse-card-icon {
        font-size: 36px;
    }

    .horse-detail {
        flex-direction: column;
        align-items: center;
    }

    .difficulty-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .results-comparison {
        flex-direction: column;
    }

    .results-card {
        min-width: auto;
        padding: 14px;
    }

    .results-vs {
        font-size: 20px;
    }

    .round-matchup {
        flex-direction: column;
        align-items: center;
    }

    .round-vs-label {
        margin-top: 0;
    }

    .control-hint {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .horse-grid {
        grid-template-columns: 1fr 1fr;
    }

    #screen-select {
        padding: 16px;
        gap: 12px;
    }

    #screen-select h2 {
        font-size: 28px;
    }

    .team-preview {
        flex-direction: column;
        gap: 8px;
    }

    .final-teams-header,
    .final-round-row,
    .final-totals {
        grid-template-columns: 60px 1fr 1fr;
        gap: 8px;
    }

    .help-content {
        padding: 16px;
        max-height: 80vh;
    }

    .help-content h2 {
        font-size: 22px;
    }

    .countdown {
        font-size: 80px;
    }

    .title-content h1 {
        font-size: 32px;
    }

    .title-content h1 span {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        padding: 0 20px;
    }
}
