.games-page-container {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
}

.games-page-container h2 {
    text-align: center;
    color: var(--accent-color);
    font-size: 28px;
    margin-bottom: 10px;
}

.games-page-container > p {
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 30px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.game-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 143, 255, 0.2);
}

.game-card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}

.game-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-card-category {
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 10px;
}

.game-card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    margin: 0 0 10px 0;
}

.game-card-description {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.game-card-prizes {
    font-size: 14px;
    margin-bottom: 20px;
}

.game-card-prizes strong {
    color: var(--accent-color);
    font-size: 16px;
}

.game-card-prizes ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.game-card-prizes li {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 5px;
}

.game-card-prizes li span {
    font-weight: bold;
    color: var(--text-color);
    opacity: 0.7;
    display: inline-block;
}

.game-details-btn {
    padding: 10px 16px;
    background-color: var(--button-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-family: 'CustomFont', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.game-details-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(44, 143, 255, 0.4);
}

.game-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.game-modal-content {
    background-color: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(44, 143, 255, 0.3);
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.game-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(44, 143, 255, 0.1);
}

.game-modal-close:hover {
    color: #50c0ff;
    background-color: rgba(44, 143, 255, 0.2);
    transform: rotate(90deg);
}

.game-modal-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.game-modal-text {
    padding: 30px;
}

.game-modal-header {
    margin-bottom: 20px;
}

.game-modal-title {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1.3;
}

.game-modal-description {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
    white-space: pre-wrap;
}

.game-modal-prizes,
.game-modal-description-section,
.game-modal-rules-section {
    background-color: rgba(44, 143, 255, 0.05);
    border: 1px solid rgba(44, 143, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.game-modal-prizes h3,
.game-modal-description-section h3,
.game-modal-rules-section h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(44, 143, 255, 0.2);
    padding-bottom: 10px;
}

.game-modal-prizes h3 .fas,
.game-modal-description-section h3 .fas,
.game-modal-rules-section h3 .fas {
    color: var(--accent-color);
    margin-right: 10px;
}


.game-modal-prizes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-modal-prizes li {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.game-modal-prizes li strong {
    color: var(--accent-color);
    width: 80px;
    display: inline-block;
}

.game-modal-content::-webkit-scrollbar {
    width: 8px;
}

.game-modal-content::-webkit-scrollbar-track {
    background: rgba(31, 31, 31, 0.5);
    border-radius: 4px;
}

.game-modal-content::-webkit-scrollbar-thumb {
    background: rgba(44, 143, 255, 0.5);
    border-radius: 4px;
}

.game-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(44, 143, 255, 0.7);
}


.light-theme .game-card,
.light-theme .game-modal-content {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.light-theme .games-page-container > p,
.light-theme .game-card-title,
.light-theme .game-card-description,
.light-theme .game-card-prizes li,
.light-theme .game-card-prizes li span {
    color: var(--text-color);
}

.light-theme .game-modal-prizes,
.light-theme .game-modal-description-section,
.light-theme .game-modal-rules-section {
    background-color: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.1);
}

.light-theme .game-modal-prizes h3,
.light-theme .game-modal-description-section h3,
.light-theme .game-modal-rules-section h3 {
     color: var(--text-color);
     border-bottom-color: rgba(0, 102, 204, 0.2);
}

.light-theme .game-modal-description,
.light-theme .game-modal-prizes li {
    color: var(--text-color);
}


.game-card {
    position: relative; 
}

.game-card-new-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #ff4848;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 0 8px 0 8px;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 72, 72, 0.4);
}


.game-card.game-card-new {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(44, 143, 255, 0.5);
    animation: sparkling-border 2s ease-in-out infinite;
}

@keyframes sparkling-border {
    0% {
        border-color: var(--accent-color);
        box-shadow: 0 0 15px rgba(44, 143, 255, 0.5);
    }
    50% {
        border-color: #50c0ff;
        box-shadow: 0 0 25px rgba(80, 192, 255, 0.8);
    }
    100% {
        border-color: var(--accent-color);
        box-shadow: 0 0 15px rgba(44, 143, 255, 0.5);
    }
}


.game-modal-maps-section {
    background-color: rgba(44, 143, 255, 0.05);
    border: 1px solid rgba(44, 143, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.game-modal-maps-section h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(44, 143, 255, 0.2);
    padding-bottom: 10px;
}

.game-modal-maps-section h3 .fas {
    color: var(--accent-color);
    margin-right: 10px;
}

.game-modal-maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.map-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.map-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-card-image {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-color);
}

.map-card-info {
    padding: 10px 15px;
}

.map-card-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--accent-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-card-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
}

.map-card-info p strong {
    color: var(--text-color);
    opacity: 1;
}

.map-card-new-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ff4848;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 2;
}


.light-theme .game-modal-maps-section {
    background-color: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.1);
}

.light-theme .game-modal-maps-section h3 {
     color: var(--text-color);
     border-bottom-color: rgba(0, 102, 204, 0.2);
}

.light-theme .map-card {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.light-theme .map-card-info p {
    color: var(--text-color);
}
.light-theme .map-card-info p strong {
    color: var(--text-color);
}


.games-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.games-header-text {
  flex-grow: 1;
}

.games-header-container h2 {
  text-align: left;
  margin-bottom: 5px;
}
.games-header-container p {
  text-align: left;
  margin-bottom: 0;
}

.btn-add-game {
  padding: 12px 20px;
  background-color: #2ecc71;
  border: 1px solid #27ae60;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'CustomFont', sans-serif;
}
.btn-add-game:hover {
  background-color: #27ae60;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
  transform: translateY(-2px);
}

.game-card {
  position: relative;
}

.game-card-admin-buttons {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  display: flex;
  gap: 8px;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 4px;
}

.admin-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  width: 32px;
  height: 32px;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.admin-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.admin-btn.btn-edit-game:hover {
  color: #3498db;
}
.admin-btn.btn-delete-game:hover {
  color: #e74c3c;
}


#game-modal-form-container {
  padding: 10px 30px 30px 30px;
  color: var(--text-color);
}

#game-modal-form h2 {
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 25px;
}

.game-modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: bold;
  opacity: 0.8;
}

.form-group input[type="text"],
.form-group textarea {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--text-color);
  font-size: 14px;
  font-family: 'CustomFont', sans-serif;
  transition: all 0.2s ease;
}
.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(44, 143, 255, 0.3);
}

.form-group textarea {
  resize: vertical;
}

.form-group-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}
.form-group-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-color);
}
.form-group-checkbox label {
  font-size: 16px;
  font-weight: bold;
}

#game-modal-form h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  color: var(--text-color);
}


#maps-form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.maps-form-entry {
  background-color: rgba(44, 143, 255, 0.05);
  border: 1px solid rgba(44, 143, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  position: relative;
}

.btn-remove-map {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e74c3c;
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}
.btn-remove-map:hover {
  background: #c0392b;
}

.btn-add-map {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background-color: rgba(44, 143, 255, 0.2);
  border: 1px dashed var(--accent-color);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-add-map:hover {
  background-color: rgba(44, 143, 255, 0.3);
}

.btn-save-game {
  width: 100%;
  padding: 15px;
  margin-top: 30px;
  background-color: #2ecc71;
  border: 1px solid #27ae60;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'CustomFont', sans-serif;
}
.btn-save-game:hover {
  background-color: #27ae60;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}


input[type="file"] {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 13px;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    box-sizing: border-box;
    margin-top: 5px;
}


input[type="file"]::file-selector-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s;
    font-family: inherit;
}


input[type="file"]::file-selector-button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}


.game-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    position: relative; 
}


.game-card-admin-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    z-index: 10; 
    background: rgba(0, 0, 0, 0.4);
    padding: 4px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.admin-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-delete-game:hover {
    background: #e74c3c;
}


.priority-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}


.maps-form-entry {
    background-color: rgba(44, 143, 255, 0.05);
    border: 1px solid rgba(44, 143, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    position: relative;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.2s;
}


.map-index-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 5;
}


.map-controls {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px; 
}


.btn-map-action {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-map-action:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}


.btn-map-delete:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}



.rating-container {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0; 
}


.stars-display {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #444;
    white-space: nowrap;
}

.stars-display::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #ffc107; 
    width: 0%;
}

.stars-filled::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.rating-count {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

.user-rating-input,
.user-rating-input-large {
    display: flex;
    flex-direction: row-reverse;
}

.user-rating-input input,
.user-rating-input-large input {
    display: none;
}

.user-rating-input label,
.user-rating-input-large label {
    cursor: pointer;
    color: #444;
    transition: transform 0.2s, color 0.2s;
    line-height: 1;
}

.user-rating-input label::before,
.user-rating-input-large label::before {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.user-rating-input input:checked ~ label,
.user-rating-input label:hover,
.user-rating-input label:hover ~ label,
.user-rating-input-large input:checked ~ label,
.user-rating-input-large label:hover,
.user-rating-input-large label:hover ~ label {
    color: #ffc107;
}



.game-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    width: 100%;
}

.game-card-category {
    margin-bottom: 0;
    align-self: flex-start;
}

.rating-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}


.user-rate-block-large {
    margin: 15px 0 5px 0;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.user-rate-label-large {
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.user-rating-input-large {
    justify-content: center;
    gap: 5px;
}

.user-rating-input-large label {
    font-size: 28px;
    padding: 0 2px;
}

.user-rating-input-large label:hover {
    transform: scale(1.1);
}



.modal-rating-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.modal-rating-title {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-rating-footer .user-rating-input-large label {
    font-size: 32px;
}

#mapRatingModal {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000 !important;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
}

#mapRatingModal .game-modal-content {
    position: relative;
    background: #1a1a1a;
    max-width: 400px;
    width: 90%;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.map-rating-preview {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


.close-map-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}

.close-map-modal:hover {
    color: white;
}


.map-card-clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.map-card-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-color: var(--accent-color);
}




@keyframes fadeSlideUpGames {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}


.game-card-image {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.game-card:hover .game-card-image {
    transform: scale(1.08);
}


.game-details-btn:active, .btn-add-game:active, .admin-btn:active {
    transform: scale(0.92) !important;
}