body {
    margin: 0;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    user-select: none;
    touch-action: none;
}

#gameContainer {
    position: relative;
    width: 100vw;
    height: 62.5vw; /* ratio 800/500 */
    max-width: 800px;
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

@media (min-aspect-ratio: 8/5) {
    #gameContainer {
        height: 100vh;
        width: 160vh;
    }
}

canvas {
    background-color: #5C94FC;
    image-rendering: pixelated;
    width: 100%;
    height: 100%;
    display: block;
}

/* Portrait orientation warning */
#portraitWarning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    color: #FFFFFF;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

@media (orientation: portrait) {
    #portraitWarning {
        display: flex;
    }
}

.warningContent h2 {
    color: #E52521;
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.warningContent p {
    font-size: 16px;
    max-width: 400px;
    margin: 10px auto;
    line-height: 1.5;
}

.phoneIcon {
    font-size: 60px;
    animation: rotatePhone 2s infinite ease-in-out;
}

@keyframes rotatePhone {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(-90deg); }
    100% { transform: rotate(0deg); }
}

/* Touch Controls for Mobile */
#touchControls {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 120px;
    pointer-events: none;
    z-index: 1000;
}


.touchBtn {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 22px;
    user-select: none;
    pointer-events: auto;
    touch-action: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.touchBtn:active {
    background: rgba(229, 37, 33, 0.85);
    border-color: #FFFFFF;
    transform: scale(0.95);
}

#btnLeft {
    left: 20px;
    bottom: 20px;
}

#btnRight {
    left: 110px;
    bottom: 20px;
}

#btnJump {
    right: 110px;
    bottom: 20px;
    background: rgba(229, 37, 33, 0.6);
}

#btnShoot {
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

/* Auto-run touch controls adaptation */
.touchBtn.autoRunActive {
    border-radius: 8px;
    height: 80px;
    bottom: 10px;
    font-size: 24px;
}
#touchControls.autoRunLayout #btnLeft,
#touchControls.autoRunLayout #btnRight {
    display: none;
}
#touchControls.autoRunLayout #btnJump {
    left: 10px;
    right: auto;
    width: calc(50% - 15px);
    background: rgba(229, 37, 33, 0.6);
}
#touchControls.autoRunLayout #btnShoot {
    right: 10px;
    left: auto;
    width: calc(50% - 15px);
    background: rgba(255, 255, 255, 0.4);
    font-size: 24px;
}

/* Name Input Dialog */
#nameInputContainer {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 200;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.nameInputBox {
    background: rgba(26, 26, 26, 0.95);
    border: 3px solid var(--primary-color, #E52521);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    max-width: 300px;
    width: 80%;
}

.nameInputBox h3 {
    margin-top: 0;
    color: var(--primary-color, #E52521);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.nameInputBox p {
    font-size: 16px;
    margin: 10px 0 15px 0;
}

#playerNameInput {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #9E9E9E;
    background: #1A1A1A;
    color: #FFFFFF;
    text-align: center;
    font-family: inherit;
    margin-bottom: 15px;
    box-sizing: border-box;
    text-transform: uppercase;
}

#playerNameInput:focus {
    outline: none;
    border-color: var(--primary-color, #E52521);
}

#saveScoreBtn {
    background: var(--primary-color, #E52521);
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.2s;
}

#saveScoreBtn:hover {
    filter: brightness(1.2);
}

/* Selection Container (Country / Team) */
#selectionContainer {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 150;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #FFFFFF;
    font-family: 'Courier New', Courier, monospace;
}

.selectionBox {
    background: rgba(20, 20, 20, 0.95);
    border: 3px solid var(--primary-color, #E52521);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    width: 85%;
    max-width: 600px;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}

.selectionBox h3 {
    margin-top: 0;
    color: var(--primary-color, #E52521);
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.selectionGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    overflow-y: auto;
    padding: 10px 5px;
    flex-grow: 1;
}

@media (max-width: 600px) {
    .selectionGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selectItem {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countryNameSearch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
}

.selectItem:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color, #E52521);
}

.selectItem.countryItem .flag {
    font-size: 32px;
    margin-bottom: 4px;
}

.selectItem.countryItem span {
    font-size: 11px;
    font-weight: bold;
    color: #ECEFF1;
}

.selectItem.teamItem {
    padding: 8px;
    border-left: 5px solid var(--team-primary, #FFF);
}

.selectItem.teamItem span.teamName {
    font-size: 10px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2px;
}

.selectItem.teamItem span.teamMascot {
    font-size: 8px;
    color: #B0BEC5;
    font-style: italic;
}

.selectionFooter {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.selectionFooterControls {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.backBtn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-family: inherit;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.backBtn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFFFFF;
}

.langSelector {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.langItemBtn {
    background: none;
    border: 2px solid transparent;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.6);
}

.langItemBtn:hover {
    transform: scale(1.1);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.langItemBtn.active {
    border-color: var(--primary-color, #E52521);
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.autoRunContainer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 8px;
    user-select: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.autoRunContainer:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.autoRunContainer input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.autoRunSwitch {
    width: 34px;
    height: 18px;
    background: #424242;
    border: 2px solid #757575;
    position: relative;
    border-radius: 2px;
}

.autoRunSwitch::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #E0E0E0;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 1px;
    transition: left 0.1s ease;
}

.autoRunContainer input:checked + .autoRunSwitch {
    background: #1B5E20;
    border-color: #2E7D32;
}

.autoRunContainer input:checked + .autoRunSwitch::after {
    left: 18px;
    background: #4CAF50;
}

.autoRunText {
    font-size: 11px;
    font-weight: bold;
    color: #ECEFF1;
    letter-spacing: 0.5px;
}

/* Styles d'intégration Google AdSense */
#appLayout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    padding: 10px;
    overflow: hidden;
}

.adContainer {
    width: 160px;
    height: 600px;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
}

.adContainer::before {
    content: 'PUBLICITÉ';
    position: absolute;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    pointer-events: none;
}

/* Masquer les publicités sur mobile/petits écrans pour préserver la jouabilité */
@media (max-width: 1150px) {
    .adContainer {
        display: none !important;
    }
}

/* Bouton Changer d'équipe */
#changeTeamBtn {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: background 0.2s, transform 0.1s;
}
#changeTeamBtn:hover {
    background: rgba(26, 26, 26, 0.95);
    border-color: #FFFFFF;
}
#changeTeamBtn:active {
    transform: scale(0.9);
}

/* Bouton Plein Écran */
#fullscreenBtn {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: rgba(26, 26, 26, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: #FFFFFF;
        font-size: 20px;
        font-weight: bold;
        border-radius: 6px;
        cursor: pointer;
        z-index: 1500;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        transition: background 0.2s, transform 0.1s;
    }
    #fullscreenBtn:hover {
        background: rgba(26, 26, 26, 0.95);
        border-color: #FFFFFF;
    }
    #fullscreenBtn:active {
        transform: scale(0.9);
    }

    /* Masquer le bouton si l'application tourne déjà en mode standalone */
    @media (display-mode: standalone) {
        #fullscreenBtn {
            display: none !important;
        }
    }

    /* Styles Plein Écran Natif ciblant le document complet */
    :fullscreen #gameContainer {
        max-width: none !important;
        max-height: none !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: #000000 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-shadow: none !important;
    }
    :fullscreen #gameContainer canvas {
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        aspect-ratio: 8 / 5 !important;
    }
    :-webkit-full-screen #gameContainer {
        max-width: none !important;
        max-height: none !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: #000000 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-shadow: none !important;
    }
    :-webkit-full-screen #gameContainer canvas {
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        aspect-ratio: 8 / 5 !important;
    }
    :fullscreen .adContainer {
        display: none !important;
    }
    :-webkit-full-screen .adContainer {
        display: none !important;
    }

    /* Écran d'accueil pour mobile */
    #mobileStartScreen {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #0c0c0f;
        background-image: radial-gradient(circle at center, #1b263b 0%, #0c0c0f 100%);
        z-index: 2500;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #FFFFFF;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .mobileStartContent {
        animation: fadeIn 0.8s ease-out;
        max-width: 450px;
        width: 100%;
    }

    .mobileStartLogo {
        font-size: 40px;
        font-weight: bold;
        color: #E52521;
        text-shadow: 0 4px 10px rgba(229, 37, 33, 0.4);
        margin-bottom: 25px;
        letter-spacing: 2px;
    }

    .mobileStartSlogan {
        font-size: 14px;
        color: #aaaaaa;
        text-transform: uppercase;
        margin-top: -15px;
        margin-bottom: 35px;
        letter-spacing: 2px;
        font-weight: bold;
    }

    .mobileStartBtn {
        background: linear-gradient(135deg, #E52521 0%, #B71C1C 100%);
        color: #FFFFFF;
        border: 2px solid #FFFFFF;
        padding: 18px 36px;
        font-size: 20px;
        font-family: inherit;
        font-weight: bold;
        cursor: pointer;
        border-radius: 50px;
        box-shadow: 0 10px 25px rgba(229, 37, 33, 0.5);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        animation: pulseBtn 2s infinite;
    }

    .mobileStartBtn:active {
        transform: scale(0.95);
        box-shadow: 0 5px 15px rgba(229, 37, 33, 0.3);
    }

    .mobileStartTip {
        font-size: 13px;
        color: #B0BEC5;
        margin-top: 30px;
        line-height: 1.6;
    }

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

    @keyframes pulseBtn {
        0% { box-shadow: 0 0 0 0 rgba(229, 37, 33, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(229, 37, 33, 0); }
        100% { box-shadow: 0 0 0 0 rgba(229, 37, 33, 0); }
    }

    /* Game Over Dialog and Sharing */
    #gameOverContainer {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 210;
        justify-content: center;
        align-items: center;
        pointer-events: auto;
        color: #FFFFFF;
        font-family: 'Courier New', Courier, monospace;
    }

    .gameOverBox {
        background: rgba(20, 20, 20, 0.95);
        border: 3px solid var(--primary-color, #E52521);
        padding: 25px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.9);
        width: 85%;
        max-width: 320px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .gameOverBox h3 {
        margin: 0;
        color: #FF0000;
        font-size: 28px;
        letter-spacing: 3px;
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
        animation: pulseText 1.5s infinite alternate;
    }

    @keyframes pulseText {
        from { text-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
        to { text-shadow: 0 0 20px rgba(255, 0, 0, 0.9); }
    }

    .gameOverBox p {
        font-size: 16px;
        margin: 5px 0;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .shareButtonsContainer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 10px 0;
    }

    .shareBtn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #FFFFFF;
        border: none;
        padding: 12px 15px;
        font-size: 14px;
        font-family: inherit;
        font-weight: bold;
        cursor: pointer;
        border-radius: 6px;
        width: 100%;
        box-sizing: border-box;
        transition: transform 0.1s, filter 0.2s;
    }

    .shareBtn:hover {
        filter: brightness(1.15);
    }

    .shareBtn:active {
        transform: scale(0.98);
    }

    .whatsappBtn {
        background: #25D366;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    }

    .twitterBtn {
        background: #1A1A1A;
        border: 1px solid #444;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    #closeGameOverBtn {
        background: var(--primary-color, #E52521);
        color: #FFFFFF;
        border: none;
        padding: 12px;
        font-size: 16px;
        font-family: inherit;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
        border-radius: 6px;
        box-sizing: border-box;
        transition: background 0.2s;
        margin-top: 5px;
    }

    #closeGameOverBtn:hover {
        background: #ff3333;
    }

/* Nouvelles classes de nettoyage des styles inline complexes */

.ios-fullscreen-tip {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 300;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.ios-fullscreen-box {
    background: rgba(20, 20, 20, 0.95);
    border: 3px solid var(--primary-color, #E52521);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    max-width: 320px;
    width: 85%;
    box-sizing: border-box;
    position: relative;
}

.fullscreen-pause-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 300;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.fullscreen-pause-box {
    background: rgba(20, 20, 20, 0.95);
    border: 3px solid var(--primary-color, #E52521);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    max-width: 380px;
    width: 85%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Enfants des pop-ups (anciennement styles inline dans index.html) */

#portraitWarning .mobileStartLogo {
    font-size: 32px;
    margin-bottom: 25px;
}

#portraitWarning .mobileStartSlogan {
    font-size: 12px;
    margin-top: -15px;
    margin-bottom: 25px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.selectionFooterControls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.popupCloseBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.popupTitle {
    margin-top: 0;
    color: var(--primary-color, #E52521);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: inherit;
}

.popupText {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
    font-family: inherit;
}

.popupSteps {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
    font-family: inherit;
}

.popupSteps > div {
    margin-bottom: 8px;
}

.popupSteps > div:last-child {
    margin-bottom: 0;
}

.popupActionBtn {
    background: var(--primary-color, #E52521);
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
}

.fsPauseTitleText {
    margin: 0;
    color: var(--primary-color, #E52521);
    font-size: 22px;
    text-transform: uppercase;
    font-family: inherit;
    letter-spacing: 1px;
}

.fsPauseBodyText {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    font-family: inherit;
    color: #dddddd;
}

.fsPauseActionBtn {
    background: var(--primary-color, #E52521);
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(229, 37, 33, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, background-color 0.2s;
}

.fsPauseActionBtn .fsPauseIcon {
    font-size: 20px;
}
