@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;600;700;800&display=swap');

body {
    box-sizing: border-box;
    margin: 0;
    padding: 5px;
    font-family: 'League Spartan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000, #1f6159) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    overflow-y: auto;
}

html {
    height: 100%;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background: transparent;
    border-radius: 16px;
    padding: 0px 5px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
    position: relative;
    margin-top: 35px;
}

.button-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.settings-button,
.ranking-button {
    background: linear-gradient(135deg, #36a28a, #0b6955);
    color: white;
    border: 3px solid #02ffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(54, 162, 138, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.ranking-button {
    background: linear-gradient(135deg, #36a28a, #0b6955);
    box-shadow: 0 4px 12px rgba(54, 162, 138, 0.3);
}

.settings-button:hover {
    background: linear-gradient(135deg, #2d8a73, #094d42);
    transform: translateY(-2px) rotate(90deg);
    box-shadow: 0 6px 16px rgba(54, 162, 138, 0.4);
}

.ranking-button:hover {
    background: linear-gradient(135deg, #2d8a73, #094d42);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 16px rgba(54, 162, 138, 0.4);
}

.settings-button:active {
    transform: translateY(0) rotate(90deg);
}

.ranking-button:active {
    transform: translateY(0) scale(1);
}

.settings-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a1a, #2d4a44);
    border: 3px solid #02ffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    width: 90%;
    max-width: 700px;
    max-height: 90%;
    display: none;
    flex-direction: column;
}

.settings-panel.show {
    display: flex;
    animation: slideIn 0.3s ease;
}

.settings-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.settings-footer {
    padding-top: 15px;
    border-top: 2px solid #02ffff;
    margin-top: 15px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
}

.settings-overlay.show {
    display: block;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #02ffff;
}

.settings-title {
    font-size: 22px;
    font-weight: 700;
    color: #02ffff;
    font-family: 'League Spartan', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-close {
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.settings-close:hover {
    background: #e55656;
    transform: scale(1.1);
}

.settings-section {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(2, 255, 255, 0.2);
}

.settings-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffa726;
    font-family: 'League Spartan', sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.settings-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.settings-option:last-child {
    margin-bottom: 0;
}

.settings-label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: #555;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: #36a28a;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(24px);
}

.settings-select {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid #02ffff;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    font-family: 'League Spartan', sans-serif;
    cursor: pointer;
    min-width: 130px;
}

.settings-select option {
    background: #1a1a1a;
    color: white;
}

.settings-button-action {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid #02ffff;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'League Spartan', sans-serif;
    transition: all 0.2s ease;
}

.settings-footer .settings-button-action {
    width: 100%;
    font-size: 14px;
    padding: 10px;
}

.settings-button-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.settings-button-action.danger {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.settings-button-action.success {
    background: linear-gradient(135deg, #36a28a, #0b6955);
}

.settings-number-input {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid #02ffff;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    font-family: 'League Spartan', sans-serif;
    width: 80px;
    text-align: center;
}

.confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.reload-button,
.save-button,
.fullscreen-button {
    background: linear-gradient(135deg, #36a28a, #0b6955);
    color: white;
    border: 3px solid #02ffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(54, 162, 138, 0.3);
    font-family: 'League Spartan', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5),
        -1px -1px 0 rgba(0, 0, 0, 0.5),
        1px -1px 0 rgba(0, 0, 0, 0.5),
        -1px 1px 0 rgba(0, 0, 0, 0.5);
}

.fullscreen-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.reload-button:hover,
.save-button:hover {
    background: linear-gradient(135deg, #2d8a73, #094d42);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(54, 162, 138, 0.4);
}

.fullscreen-button:hover {
    background: linear-gradient(135deg, #e55656, #d63031);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

.reload-button:active,
.save-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(54, 162, 138, 0.3);
}

.fullscreen-button:active {
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.save-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.logo-container-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.user-logo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: contain;
    border: 3px solid #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.user-logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 3px dashed #02ffff;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'League Spartan', sans-serif;
    font-size: 14px;
    color: #667eea;
    text-align: center;
    padding: 10px;
}

.user-logo-placeholder:hover {
    background: #e8eaf6;
    transform: scale(1.05);
}

.header-logo-input {
    display: none;
}

.table-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: visible;
    background: white;
    border: 3px solid #02ffff;
}

table {
    overflow: visible;
}

tbody {
    overflow: visible;
}

tr {
    overflow: visible;
}

td {
    overflow: visible;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    table-layout: fixed;
}

thead {
    background: #36a28a;
    color: white;
}

th {
    padding: 16px 2px;
    text-align: center;
    vertical-align: middle;
    font-weight: 700;
    font-size: 17.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0px 0px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
    font-family: 'League Spartan', sans-serif;
    cursor: pointer;
    position: relative;
}

th.editable:hover {
    background: #2d8a73;
}

.header-edit-input {
    width: 90%;
    background: white;
    color: #333;
    border: 2px solid #02ffff;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    font-family: 'League Spartan', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
}

.header-edit-input:focus {
    outline: none;
    border-color: #667eea;
}

th:first-child {
    font-size: 22.75px;
}

th:nth-child(1) {
    width: 8%;
}

th:nth-child(2) {
    width: 8%;
}

th:nth-child(3) {
    width: 23.4%;
}

th:nth-child(4) {
    width: 8%;
}

th:nth-child(5) {
    width: 10%;
}

th:nth-child(6) {
    width: 10%;
}

th:nth-child(7) {
    width: 8%;
}

th:nth-child(8) {
    width: 10%;
}

th:nth-child(9) {
    width: 10%;
}

th:nth-child(10) {
    width: 10%;
}

th:nth-child(11) {
    width: 10%;
}

th:first-child {
    border-top-left-radius: 8px;
}

th:last-child {
    border-top-right-radius: 8px;
}

td {
    padding: 6px 4px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 13px;
}

tbody tr {
    transition: background-color 0.2s ease;
}

tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

tbody tr:nth-child(even) {
    background-color: #ffffff;
}

tbody tr:hover {
    background-color: #e3f2fd;
}

tbody tr {
    position: relative;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

tbody tr.animating {
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

tbody tr.animate-up {
    background-color: #4caf50 !important;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.6);
}

.place-change-indicator {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 8px;
    animation: fadeInOut 5s ease-in-out;
    font-family: 'League Spartan', sans-serif;
    z-index: 101;
}

.place-change-indicator.up {
    color: #ffffff;
    background: #4caf50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.5);
}

.place-change-indicator.down {
    color: #ffffff;
    background: #f44336;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.5);
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }

    10% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }

    20% {
        transform: translateY(-50%) scale(1);
    }

    80% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
}

.place-cell {
    font-weight: 800;
    font-size: 32px;
    color: #005746;
}

.team-name-input {
    width: 100%;
    padding: 3px 8px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    transition: border-color 0.2s ease;
    font-family: 'League Spartan', sans-serif;
    min-width: 200px;
}

.team-name-input:focus {
    outline: none;
    border-color: #667eea;
}

.number-input {
    width: 100%;
    max-width: 50px;
    padding: 3px 2px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 23px;
    text-align: center;
    transition: border-color 0.2s ease;
    font-family: 'League Spartan', sans-serif;
    background-color: #fff6d1;
}

.number-input:focus {
    outline: none;
    border-color: #667eea;
}

.quiz-input {
    background-color: #cbfff6;
}

.category-input {
    background-color: #cbfff6;
}

.sum-cell {
    font-weight: 800;
    font-size: 32px;
    color: #0b473a;
    background-color: #7af8de !important;
}

.sum-cell-duplicate {
    background-color: #fed94b !important;
    color: #8b6914;
}

.logo-cell {
    width: 90px;
    padding: 4px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}

.logo-display {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border: 2px solid #e0e0e0;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-display:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

.logo-display svg {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.logo-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.logo-gallery {
    position: fixed;
    background: linear-gradient(135deg, #000000, #1f6159);
    border: 2px solid #02ffff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    width: 400px;
    max-height: 500px;
    overflow-y: auto;
    display: none;
}

.logo-gallery.show {
    display: block;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.gallery-title {
    font-size: 20px;
    font-weight: 700;
    color: #02ffff;
    font-family: 'League Spartan', sans-serif;
}

.gallery-close {
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-section {
    margin-bottom: 15px;
    text-align: center;
}

.upload-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'League Spartan', sans-serif;
    transition: all 0.2s ease;
}

.upload-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.upload-input {
    display: none;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.logo-option {
    width: 50px;
    height: 50px;
    border: 2px solid #02ffff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
}

.logo-option:hover {
    border-color: #667eea;
    transform: scale(1.1);
}

.logo-option svg {
    width: 45px;
    height: 45px;
    border-radius: 4px;
}

.logo-option img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
}

.logo-option.custom {
    position: relative;
}

.logo-option .delete-custom {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    cursor: pointer;
    display: none;
}

.logo-option.custom:hover .delete-custom {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header h1 {
        font-size: 28px;
    }

    .event-name {
        font-size: 18px;
    }

    th,
    td {
        padding: 10px 6px;
        font-size: 13px;
    }

    .number-input {
        width: 75px;
    }

    .button-group {
        flex-direction: column;
        gap: 8px;
    }
}

/* Game Selection Modal */
.game-selection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.game-selection-modal {
    background: linear-gradient(135deg, #1a1a1a, #2d4a44);
    border: 3px solid #02ffff;
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(2, 255, 255, 0.2);
}

.game-selection-modal h2 {
    color: #02ffff;
    font-family: 'League Spartan', sans-serif;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 32px;
    text-shadow: 0 0 10px rgba(2, 255, 255, 0.3);
}

.game-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn.new-game {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 176, 155, 0.4);
}

.action-btn.new-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 155, 0.6);
}

.games-list-container {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-list-container h3 {
    color: #ffa726;
    font-family: 'League Spartan', sans-serif;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.games-list {
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 5px;
}

.game-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.game-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(2, 255, 255, 0.3);
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-name {
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.game-date {
    color: #aaa;
    font-size: 12px;
}

.game-item-actions {
    display: flex;
    gap: 10px;
}

.resume-btn,
.delete-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.resume-btn {
    background: rgba(2, 255, 255, 0.15);
    color: #02ffff;
    border: 1px solid #02ffff;
}

.resume-btn:hover {
    background: rgba(2, 255, 255, 0.3);
}

.delete-btn {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.delete-btn:hover {
    background: rgba(255, 107, 107, 0.3);
}

.loading-games {
    text-align: center;
    color: #aaa;
    padding: 20px;
    font-style: italic;
}

/* Tabs */
.games-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #aaa;
    font-family: 'League Spartan', sans-serif;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.tab-btn.active {
    color: #02ffff;
    background: rgba(2, 255, 255, 0.1);
    font-weight: bold;
}

.archive-btn {
    background: rgba(255, 167, 38, 0.15);
    color: #ffa726;
    border: 1px solid #ffa726;
}

.archive-btn:hover {
    background: rgba(255, 167, 38, 0.3);
}

.unarchive-btn {
    background: rgba(102, 187, 106, 0.15);
    color: #66bb6a;
    border: 1px solid #66bb6a;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.unarchive-btn:hover {
    background: rgba(102, 187, 106, 0.3);
}