html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Pixelify Sans', sans-serif;
    padding: 20px;
    background: url('images/2.png') no-repeat center center fixed;
    background-size: cover;
}

/* Game Header */
.game-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.game-header h1 {
    font-size: 3em;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 10px;
    animation: none;
    white-space: normal;
    width: auto;
}

.game-subtitle {
    font-size: 1.1em;
    color: rgba(255, 215, 0, 0.7);
    margin-bottom: 15px;
}

.game-info {
    margin-top: 15px;
}

.back-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateX(-5px);
}

.hero-spacer {
    height: 40px;
    margin-bottom: 10px;
}

h1 {
    font-family: 'Pixelify Sans', sans-serif;
    color: white;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    white-space: nowrap;
    animation: titleTypeIn 1.5s steps(30) 0s 1 normal both, titlePulse 3s ease-in-out 1.5s infinite;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

@keyframes titleTypeIn {
    0% {
        width: 0;
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.8), 0 0 45px rgba(255, 215, 0, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

#subtitle {
    font-size: 0.5em;
    display: block;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInSubtitle 1s ease-in 1.5s 1 normal both, subtitleGlow 2s ease-in-out 2.5s infinite alternate;
    opacity: 0;
}

@keyframes fadeInSubtitle {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtitleGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.8), 0 0 45px rgba(255, 215, 0, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

#info-container {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #cda623 0%, #e8b829 20%, #ffd700 40%, #e8b829 60%, #cda623 80%, #b89020 100%);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    font-family: 'Pixelify Sans', sans-serif;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(205, 166, 35, 0.25), inset 0 0 40px rgba(255, 255, 255, 0.08);
    position: relative;
    display: flex;
    gap: 30px;
}

.info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.column-title {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 2.5em;
    color: white;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.7), 0 0 45px rgba(255, 215, 0, 0.5);
    margin: 0 0 15px 0;
    animation: titlePulse 3s ease-in-out infinite;
}

.column-subtitle {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 1em;
    color: white;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
    margin: 0;
    line-height: 1.5;
    max-width: 85%;
}

.info-right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.info-right h3 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    min-height: 1.5em;
}

/* Collaboration bonus animation */
.collaboration-bonus {
    animation: bonusPulse 1.5s ease-in-out infinite;
}

@keyframes bonusPulse {
    0%, 100% {
        opacity: 0.6;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 215, 0, 1),
                     0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.learn-item {
    position: static;
}

.learn-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    cursor: pointer;
    background-color: #796422;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Pixelify Sans', sans-serif;
    transition: all 0.3s ease;
    text-align: left;
}

.learn-button:hover {
    background-color: #8a7528;
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.learn-panel {
    display: none;
    position: absolute;
    left: -470px;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 8px;
    padding: 20px 20px 30px 20px;
    width: 450px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    font-size: 13px;
    line-height: 1.6;
}

/* Custom scrollbar for learn panels */
.learn-panel::-webkit-scrollbar {
    width: 8px;
}

.learn-panel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.learn-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 4px;
}

.learn-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.7);
}

.learn-item:hover .learn-panel {
    display: block;
    animation: panelFadeIn 0.3s ease-out;
}

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

.learn-panel h4 {
    color: #ffd700;
    font-size: 14px;
    margin: 12px 0 8px 0;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.learn-panel h4:first-child {
    margin-top: 0;
}

.learn-panel h5 {
    color: #ffd700;
    font-size: 13px;
    margin: 15px 0 8px 0;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.learn-panel p {
    margin: 8px 0;
    color: #fff;
}

.learn-panel p:last-child {
    margin-bottom: 0;
}

.learn-panel ul {
    margin: 8px 0;
    padding-left: 20px;
    list-style: none;
}

.learn-panel li {
    margin: 6px 0;
    padding-left: 15px;
    position: relative;
    color: #fff;
}

.learn-panel li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
}

.learn-panel strong {
    color: #ffd700;
}

.learn-panel em {
    color: #e8b829;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#info-container {
    overflow: hidden;
}

.info-left p {
    animation: typeIn 1.8s steps(40) 0s 1 normal both, textFlicker 3s ease-in-out 1.8s infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.info-left p:first-child {
    animation-delay: 0s, 1.8s;
}

.info-left p:nth-child(3) {
    animation-delay: 0.7s, 2.5s;
}

.info-left pre {
    font-family: 'Pixelify Sans', sans-serif;
    margin: 10px 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 215, 0, 0.3);
    animation: typeIn 2.2s steps(60) 0.5s 1 normal both, treeGlow 2.5s ease-in-out 2.7s infinite alternate;
}

.info-left pre:first-of-type {
    animation-delay: 0.5s, 2.7s;
}

.info-left pre:last-of-type {
    animation-delay: 1.6s, 3.8s;
}

.info-right {
    animation: fadeInRight 1s ease-out 2s 1 normal both;
    opacity: 0;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes typeIn {
    0% {
        width: 0;
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes textFlicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        opacity: 0.9;
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 18px rgba(255, 215, 0, 0.5);
    }
}

@keyframes treeGlow {
    0% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 215, 0, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 215, 0, 0.5);
    }
}

#game-container {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #cda623 0%, #e8b829 20%, #ffd700 40%, #e8b829 60%, #cda623 80%, #b89020 100%);
    background-size: 400% 400%;
    animation: containerFadeIn 1s ease-out 5s 1 normal forwards, gradientShift 4s ease 6s infinite;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(205, 166, 35, 0.25), inset 0 0 40px rgba(255, 255, 255, 0.08);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes containerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#menu {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
    background-color: #796422;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Pixelify Sans', sans-serif;
    position: relative;
}

button.main-button {
    opacity: 0;
    animation: buttonFadeIn 0.8s ease-out 4s 1 normal forwards, glitch 0.3s 4.8s infinite;
}

@keyframes buttonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: 2px 2px #ff00ff, -2px -2px #00ffff;
    }
    25% {
        transform: translate(-2px, 2px);
        text-shadow: -2px -2px #ff00ff, 2px 2px #00ffff;
    }
    50% {
        transform: translate(2px, -2px);
        text-shadow: 2px -2px #ff00ff, -2px 2px #00ffff;
    }
    75% {
        transform: translate(-2px, -2px);
        text-shadow: -2px 2px #ff00ff, 2px -2px #00ffff;
    }
    100% {
        transform: translate(0);
        text-shadow: 2px 2px #ff00ff, -2px -2px #00ffff;
    }
}

#game {
    margin-top: 20px;
    min-height: 150px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
}

#game h2, #game h3, #game h4 {
    font-family: 'Courier New', Courier, monospace;
}

#game button {
    font-family: 'Pixelify Sans', sans-serif;
}

.soi-report {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.soi-report h3 {
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.soi-report h4 {
    color: #e8b829;
    margin-top: 15px;
}

.soi-report ul {
    list-style: none;
    padding-left: 0;
}

.soi-report li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-highlight {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #ffd700;
}

.scores {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-in;
}

.modal-content {
    background: linear-gradient(135deg, rgba(205, 166, 35, 0.95) 0%, rgba(232, 184, 41, 0.95) 50%, rgba(184, 144, 32, 0.95) 100%);
    margin: 5% auto;
    padding: 30px;
    border: 2px solid #ffd700;
    border-radius: 15px;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: slideDown 0.4s ease-out;
}

.chat-modal-content {
    max-width: 600px;
}

.info-modal-content {
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
}

.info-content {
    color: white;
    line-height: 1.6;
    font-family: 'Courier New', Courier, monospace;
}

.info-content h4 {
    color: #ffd700;
    font-size: 16px;
    margin: 15px 0 10px 0;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    font-family: 'Courier New', Courier, monospace;
}

.info-content h4:first-child {
    margin-top: 0;
}

.info-content h5 {
    color: #ffd700;
    font-size: 14px;
    margin: 15px 0 8px 0;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    font-family: 'Courier New', Courier, monospace;
}

.info-content p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.95);
}

.info-content ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style: none;
}

.info-content li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.info-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.info-content strong {
    color: #ffd700;
}

.info-content em {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.info-modal-content::-webkit-scrollbar {
    width: 10px;
}

.info-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.info-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.6);
    border-radius: 5px;
}

.info-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.8);
}

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

.close-modal {
    color: white;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    transition: all 0.3s;
}

.close-modal:hover {
    color: #000;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.modal h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: 'Pixelify Sans', sans-serif;
}

/* Candidate Cards */
.candidates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.candidate-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.candidate-card:hover {
    border-color: #ffd700;
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.candidate-photo {
    font-size: 80px;
    margin-bottom: 15px;
}

.candidate-card h3 {
    color: white;
    margin: 10px 0;
    font-size: 1.3em;
}

.candidate-role {
    color: #ffd700;
    font-weight: bold;
    margin: 5px 0;
    font-size: 0.9em;
}

.candidate-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85em;
    line-height: 1.4;
    margin: 10px 0;
}

.candidate-stats {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    font-size: 0.8em;
    color: white;
}

.select-candidate-btn {
    background: rgba(255, 215, 0, 0.3);
    color: white;
    border: 2px solid #ffd700;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 0.9em;
    transition: all 0.3s;
    margin-top: 10px;
}

.select-candidate-btn:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Chat Interface */
.chat-container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 15px;
    padding: 10px;
}

.chat-message {
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 8px;
    animation: fadeIn 0.3s ease-in;
}

.chat-message.system {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-align: center;
}

.chat-message.user {
    background: rgba(255, 215, 0, 0.3);
    color: white;
    margin-left: 20%;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.chat-message.ai {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    margin-right: 20%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.chat-message strong {
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
    font-size: 0.85em;
}

.chat-input-area {
    display: flex;
    gap: 10px;
}

#chat-input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #ffd700;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 0.9em;
}

#chat-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

#send-chat-btn {
    padding: 12px 25px;
    background: rgba(255, 215, 0, 0.3);
    color: white;
    border: 2px solid #ffd700;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Pixelify Sans', sans-serif;
    transition: all 0.3s;
}

#send-chat-btn:hover {
    background: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.8);
}

/* Progress Indicator */
#progress-indicator {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: fadeIn 0.5s ease-in;
}

.progress-bar-container {
    margin-bottom: 15px;
}

.progress-label {
    color: #ffd700;
    font-size: 0.9em;
    margin-bottom: 8px;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 2px solid #ffd700;
    overflow: hidden;
    position: relative;
}

#progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #cda623, #ffd700, #e8b829);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    width: 0%;
    transition: width 0.5s ease-out;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.progress-info {
    text-align: center;
    color: white;
    font-size: 0.85em;
    margin-top: 8px;
}

.live-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8em;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    color: #ffd700;
    font-size: 1.3em;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

#thinking-mode {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
