/* Kahoot-Inspired Styling */

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #1368ce;
    border-radius: 10px;
    transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d4f9f;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #1368ce #f1f1f1;
}

/* Home Page Styles */
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
}


.page {
    overflow: hidden;
}

main {
    padding: 0;
    margin: 0;
    min-height: 100dvh;
    min-width: 100dvw;
    background: #46178f;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position:relative;
}

main::before {
    content: '';
    position: absolute;
    top: -32%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: #ff6c00;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

main::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: #1368ce;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;

}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 96dvh;
    max-width: 96dvw;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}



.content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.button-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1;
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.game-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    background: #e21b3c;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: transform 0.2s;
    box-shadow: 0 8px 0 #b01631;
    position: relative;
}

.game-button:nth-child(1) {
    background: #e21b3c;
    box-shadow: 0 8px 0 #b01631;
}

.game-button:nth-child(2) {
    background: #1368ce;
    box-shadow: 0 8px 0 #0d4f9f;
}

.game-button:nth-child(3) {
    background: #ffa602;
    box-shadow: 0 8px 0 #cc8502;
}

.game-button:hover {
    transform: translateY(4px);
    color: white;
}

.game-button:nth-child(1):hover {
    box-shadow: 0 4px 0 #b01631;
}

.game-button:nth-child(2):hover {
    box-shadow: 0 4px 0 #0d4f9f;
}

.game-button:nth-child(3):hover {
    box-shadow: 0 4px 0 #cc8502;
}

.game-button:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 transparent;
}

.button-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.button-text {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* Game Page Common Styles */
.game-page, .monitor-page {
    margin: 0 auto;
    width: 96vw;
    max-height: 96vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.setup-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
    border: none;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.setup-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #46178f;
    font-weight: 900;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #46178f;
    text-transform: uppercase;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 3px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    min-height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: #1368ce;
    box-shadow: 0 0 0 3px rgba(19, 104, 206, 0.2);
}

/* Canvas Styles */
canvas {
    border: 3px solid #e0e0e0;
    border-radius: 8px;
    cursor: crosshair;
    display: block;
    margin: 0 auto;
    background: white;
    width: 100%;
    max-width: 400px;
    height: auto;
    touch-action: none;
}

.canvas-controls {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.color-picker {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.5rem;
}

.color-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    touch-action: manipulation;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.color-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
    border-color: #46178f;
    border-width: 4px;
}

.color-btn:active {
    transform: translateY(1px) scale(1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.eraser-btn {
    background: white !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: #1368ce;
    color: white;
    box-shadow: 0 6px 0 #0d4f9f;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #0d4f9f;
}

.btn-primary:active:not(:disabled) {
    transform: translateY(6px);
    box-shadow: 0 0 0 transparent;
}

.btn-secondary {
    background: #9e9e9e;
    color: white;
    box-shadow: 0 6px 0 #757575;
}

.btn-secondary:hover:not(:disabled) {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #757575;
}

.btn-secondary:active:not(:disabled) {
    transform: translateY(6px);
    box-shadow: 0 0 0 transparent;
}

.btn-success {
    background: #26890d;
    color: white;
    box-shadow: 0 6px 0 #1a6009;
}

.btn-success:hover:not(:disabled) {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #1a6009;
}

.btn-success:active:not(:disabled) {
    transform: translateY(6px);
    box-shadow: 0 0 0 transparent;
}

.btn-warning {
    background: #ffa602;
    color: white;
    box-shadow: 0 6px 0 #cc8502;
}

.btn-warning:hover:not(:disabled) {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #cc8502;
}

.btn-warning:active:not(:disabled) {
    transform: translateY(6px);
    box-shadow: 0 0 0 transparent;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Lobby Styles */
.lobby-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
    border: none;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 90dvh;
    -webkit-overflow-scrolling: touch;
}

.lobby-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #46178f;
    font-weight: 900;
}

.game-code {
    font-size: 1.5rem;
    font-weight: 900;
    color: #46178f;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.3em;
    background: #ffd21e;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 0 #d4ad19;
    word-break: break-all;
}

.game-code-badge {
    text-transform: uppercase;
    background: #ffd21e;
    color: #46178f;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.copy-message {
    display: inline-block;
    margin-left: 1rem;
    color: #26890d;
    font-weight: bold;
    font-size: 1rem;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    15% {
        opacity: 1;
        transform: translateY(0);
    }
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-5px);
    }
}

.players-list {
    margin: 2rem 0;
}

.players-list h3 {
    color: #46178f;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.player-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f2f2f2;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 3px solid #e0e0e0;
    flex-direction: column;
}

.player-avatar-small {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #1368ce;
}

/* Game Config Styles */
.game-config {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 3px solid #e0e0e0;
}

.game-config h3 {
    color: #46178f;
    font-weight: 900;
    text-transform: uppercase;
}

.rounds-config {
    max-height: 500px;
    overflow-y: auto;
    margin: 1rem 0;
}

.round-config-item {
    background: #f2f2f2;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 3px solid #e0e0e0;
}

.round-config-item h5 {
    color: #46178f;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dice-actions {
    display: grid;
    gap: 0.75rem;
}

.config-buttons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.config-buttons .btn {
    flex: 1;
}

/* Game Container Styles */
.game-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
    border: none;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.game-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e0e0e0;
}

.game-header h2 {
    color: #46178f;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.current-turn {
    text-align: center;
    margin: 0;
}

.current-turn h3 {
    color: #46178f;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* Dice Styles */
.dice-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 1rem 0;
}

.dice {
    width: 120px;
    height: 120px;
    perspective: 1000px;
    animation: rollDice 1s ease-out;
}

.dice-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    background: #e21b3c;
    border-radius: 15px;
    box-shadow: 0 10px 0 #b01631;
}

@keyframes rollDice {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
        transform: rotateX(360deg) rotateY(180deg) rotateZ(90deg);
    }
    50% {
        transform: rotateX(720deg) rotateY(360deg) rotateZ(180deg);
    }
    75% {
        transform: rotateX(1080deg) rotateY(540deg) rotateZ(270deg);
    }
    100% {
        transform: rotateX(1440deg) rotateY(720deg) rotateZ(360deg);
    }
}

.dice.no-animation {
    animation: none !important;
}

.action-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #46178f;
    text-align: center;
    padding: 1.5rem 2rem;
    background: #ffd21e;
    border-radius: 10px;
    box-shadow: 0 6px 0 #d4ad19;
    text-transform: uppercase;
}

.roll-button {
    background: #e21b3c;
    border: none;
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    box-shadow: 0 8px 0 #b01631 !important;
    font-weight: 900;
}

.roll-button:hover {
    transform: translateY(4px) !important;
    box-shadow: 0 4px 0 #b01631 !important;
}

.roll-button:active {
    transform: translateY(8px) !important;
    box-shadow: 0 0 0 transparent !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Players Grid */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.player-card {
    background: #f2f2f2;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s;
    border: 3px solid #e0e0e0;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.player-card.active {
    border-color: #26890d;
    background: #c8e6c9;
    box-shadow: 0 6px 0 #1a6009;
    transform: scale(1.05);
    border-width: 4px;
}

.player-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #1368ce;
    margin-bottom: 0.5rem;
}

.player-name {
    font-weight: 700;
    color: #46178f;
    text-transform: uppercase;
}

/* Message Input */
.message-input {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.message-input .form-control {
    flex: 1;
}

.message-input .btn {
    padding: 0.75rem 1.5rem;
}

/* Monitor Specific Styles */
.monitor-container {
    position: relative;
}

.monitor-header {
    text-align: center;
    padding: 2rem;
    background: #FFFF;
    color: #46178f;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.monitor-header h1 {
    margin: 0 0 1rem 0;
    font-weight: 900;
    color: #46178f;
    text-transform: uppercase;
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.round-badge {
    background: #ffd21e;
    color: #46178f;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 4px 0 #d4ad19;
}

.waiting-state {
    text-align: center;
    padding: 3rem;
}

.waiting-state h2 {
    color: white;
    font-weight: 900;
}

.players-waiting {
    max-width: 600px;
    margin: 2rem auto;
}

.player-item-monitor {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
    border: 3px solid #e0e0e0;
}

.player-avatar-monitor {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #1368ce;
}

.monitor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.current-state, .players-overview {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

.current-state h2, .players-overview h3 {
    color: #46178f;
    font-weight: 900;
    text-transform: uppercase;
}

.current-player-display {
    text-align: center;
    margin: 2rem 0;
}

.current-player-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #1368ce;
    margin-bottom: 1rem;
}

.current-player-display h3 {
    color: #46178f;
    font-weight: 900;
    text-transform: uppercase;
}

.monitor-dice-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 1rem 0;
}

.monitor-dice {
    width: 150px;
    height: 150px;
}

.monitor-dice .dice-inner {
    font-size: 5rem;
}

.monitor-action {
    text-align: center;
    width: 100%;
}

.monitor-action h4 {
    color: #46178f;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.monitor-action p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #46178f;
}

.monitor-players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.monitor-player-card {
    background: #f2f2f2;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s;
    border: 3px solid #e0e0e0;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.monitor-player-card.active {
    border-color: #26890d;
    background: #c8e6c9;
    transform: scale(1.1);
    box-shadow: 0 6px 0 #1a6009;
    border-width: 4px;
}

/* Floating Messages */
.messages-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 350px;
    max-height: 80dvh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
}

.floating-message {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s ease-out forwards;
    pointer-events: auto;
    opacity: 1;
    border: 3px solid #1368ce;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

.floating-message.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

.message-author {
    font-weight: 900;
    color: #46178f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.message-content {
    color: #333;
    font-weight: 600;
}

.gif-message {
    border-color: #e21b3c;
}

.message-gif {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 3px solid;
    font-weight: 700;
}

.alert-danger {
    background: #ffebee;
    color: #e21b3c;
    border-color: #e21b3c;
}

/* GIF Picker Styles */
.gif-picker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(70, 23, 143, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gif-picker-modal {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80dvh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

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

.gif-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 3px solid #e0e0e0;
}

.gif-picker-header h3 {
    margin: 0;
    color: #46178f;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-close {
    background: #e21b3c;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 #b01631;
    transition: all 0.2s;
}

.btn-close:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #b01631;
}

.btn-close:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 transparent;
}

.gif-picker-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.gif-search-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.gif-search-bar .form-control {
    flex: 1;
}

.gif-search-bar .btn {
    padding: 0.75rem 1.5rem;
}

.gif-loading, .gif-empty {
    text-align: center;
    padding: 3rem;
    color: #46178f;
    font-weight: 700;
    font-size: 1.2rem;
}

.gif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.gif-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid #e0e0e0;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.gif-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 0 rgba(19, 104, 206, 0.5);
    border-color: #1368ce;
}

.gif-item:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

.gif-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Home page adjustments */
    .home-container {
        min-height: 100dvh;
        padding: 1rem;
    }

    .home-container h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
        letter-spacing: 1px;
    }

    .home-container::before,
    .home-container::after {
        width: 300px;
        height: 300px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0rem;
    }

    .game-button {
        width: 100%;
        height: 180px;
    }

    .button-icon {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .button-text {
        font-size: 1.2rem;
    }

    .setup-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .setup-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-control {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    canvas {
        max-width: 100%;
        height: auto;
    }

    /* Button adjustments */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    /* Lobby adjustments */
    .lobby-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .lobby-container h2 {
        font-size: 1.5rem;
    }

    .game-code {
        font-size: 1.8rem;
        letter-spacing: 0.2em;
        padding: 0.4rem 0.8rem;
    }

    .game-code-badge {
        font-size: 1.2rem;
        letter-spacing: 0.15em;
        padding: 0.4rem 0.8rem;
    }

    .player-item {
        padding: 0.6rem;
        gap: 0.75rem;
    }

    .player-avatar-small {
        width: 100px;
        height: 100px;
    }

    input[type="text"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px;
        padding: 0.75rem;
    }

    /* Game config adjustments */
    .round-config-item {
        padding: 1rem;
    }

    .round-config-item h5 {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .config-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Game container adjustments */
    .game-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .game-header h2 {
        font-size: 1.5rem;
    }

    .current-turn h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    /* Dice adjustments */
    .dice {
        width: 100px;
        height: 100px;
    }

    .dice-inner {
        font-size: 3rem;
    }

    .action-text {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
    }

    .roll-button {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }

    /* Players grid adjustments */
    .players-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .player-card {
        padding: 1rem;
    }

    .player-avatar {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .player-name {
        font-size: 0.9rem;
    }

    /* Message input adjustments */
    .message-input {
        flex-direction: column;
        gap: 0.75rem;
    }

    .message-input .btn {
        width: 100%;
    }

    /* Monitor adjustments */
    .monitor-header {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .monitor-header h1 {
        font-size: 1.8rem;
    }

    .game-info {
        gap: 0.75rem;
    }

    .round-badge {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .monitor-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .current-state, .players-overview {
        padding: 1.5rem;
    }

    .current-state h2, .players-overview h3 {
        font-size: 1.3rem;
    }

    .current-player-avatar {
        width: 120px;
        height: 120px;
        border-width: 4px;
    }

    .current-player-display h3 {
        font-size: 1.2rem;
    }

    .monitor-dice {
        width: 120px;
        height: 120px;
    }

    .monitor-dice .dice-inner {
        font-size: 4rem;
    }

    .monitor-action h4 {
        font-size: 1rem;
    }

    .monitor-action p {
        font-size: 1.2rem;
    }

    .monitor-players-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .monitor-player-card {
        padding: 0.75rem;
    }

    /* Floating messages adjustments */
    .messages-container {
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        top: 10px;
        max-height: 60dvh;
    }

    .floating-message {
        padding: 1rem;
    }

    .message-author {
        font-size: 1rem;
    }

    .message-content {
        font-size: 0.9rem;
    }

    /* Alert adjustments */
    .alert {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* GIF picker adjustments */
    .gif-picker-modal {
        width: 95%;
        max-height: 90dvh;
    }

    .gif-picker-header {
        padding: 1rem 1.5rem;
    }

    .gif-picker-header h3 {
        font-size: 1.3rem;
    }

    .gif-picker-body {
        padding: 1.5rem;
    }

    .gif-search-bar {
        flex-direction: column;
        gap: 0.5rem;
    }

    .gif-search-bar .btn {
        width: 100%;
    }

    .gif-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    input[type="text"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px;
        padding: 0.75rem;
        min-height: 44px;
    }

    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }

    .home-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .game-button {
        width: 100%;
        height: 150px;
    }

    .button-icon {
        font-size: 2.5rem;
    }

    .button-text {
        font-size: 1rem;
    }

    .setup-container, .lobby-container, .game-container {
        padding: 1rem;
        margin: 0;
    }

    .game-code {
        font-size: 1.5rem;
    }

    .dice {
        width: 80px;
        height: 80px;
    }

    .dice-inner {
        font-size: 2.5rem;
    }

    .action-text {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }

    .roll-button {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
    }

    .players-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .player-avatar {
        width: 100px;
        height: 100px;
    }

    .messages-container {
        width: calc(100% - 10px);
        left: 5px;
        right: 5px;
        top: 5px;
    }

    .gif-picker-modal {
        width: 98%;
        max-height: 95dvh;
    }

    .gif-picker-header {
        padding: 0.75rem 1rem;
    }

    .gif-picker-header h3 {
        font-size: 1.1rem;
    }

    .gif-picker-body {
        padding: 1rem;
    }

    .gif-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .canvas-controls {
        gap: 0.5rem;
    }

    .color-btn {
        min-width: 40px;
        min-height: 40px;
        margin: 0;
    }

    .player-avatar-canvas {
        max-width: 250px;
        max-height: 250px;
    }

    .player-list {
        padding: 0.5rem;
    }

    .watch-players-showcase {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .watch-player-card {
        padding: 1.5rem;
    }

    .watch-player-avatar-wrapper {
        width: 120px;
        height: 120px;
    }

    .watch-game-active {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header"
            "main"
            "sidebar";
        gap: 1.5rem;
        padding: 1rem;
    }

    .watch-game-info-header {
        justify-content: center;
    }

    .game-container-new {
        padding: 1rem;
        margin: 1rem;
    }

    .game-info-bar {
        justify-content: center;
    }

    .game-actions {
        gap: 0.75rem;
    }

    .game-action-btn {
        width: 70px;
        height: 70px;
    }

    .game-action-btn .btn-icon {
        font-size: 1.75rem;
    }

    .game-action-btn .btn-label {
        font-size: 0.75rem;
    }

    .watch-current-turn {
        padding: 2rem;
    }

    .watch-turn-display {
        flex-direction: column;
        gap: 2rem;
    }

    .watch-player-avatar-wrapper {
        width: 120px;
        height: 120px;
    }

    .watch-player-name {
        font-size: 1.5rem;
    }

    .watch-action-text {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }

    .watch-players-sidebar {
        max-height: 400px;
    }

    .watch-lobby {
        padding: 2rem 1rem;
    }

    .watch-lobby-header h1 {
        font-size: 2rem;
    }

    .lobby-subtitle {
        font-size: 1.2rem;
    }
}

/* Watch Game Styles */
.watch-game-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.watch-game-code {
    background: linear-gradient(135deg, #ffd21e 0%, #ffa602 100%);
    color: #46178f;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 0 #cc8502;
}

.watch-round-info {
    background: linear-gradient(135deg, #1368ce 0%, #0d4f9f 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 0 #0a3d7a;
}

.watch-lobby {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    margin: 2rem auto;
    animation: slideUp 0.5s ease-out;
}

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

.watch-lobby-header {
    text-align: center;
    margin-bottom: 3rem;
}

.watch-lobby-header h1 {
    font-size: 3rem;
    color: #46178f;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lobby-subtitle {
    font-size: 1.5rem;
    color: #1368ce;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

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

.watch-players-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.watch-player-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 4px solid #e0e0e0;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: popIn 0.5s ease-out backwards;
    position: relative;
    overflow: hidden;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.watch-player-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 0 rgba(19, 104, 206, 0.3);
    border-color: #1368ce;
}

.watch-player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s;
}

.watch-player-card:hover::before {
    left: 100%;
}

.watch-player-avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
}

.watch-player-avatar,
.watch-player-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #1368ce;
    box-shadow: 0 6px 0 #0d4f9f, 0 0 20px rgba(19, 104, 206, 0.3);
    transition: all 0.3s ease;
    background: white;
}

.watch-player-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    color: #9e9e9e;
    background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
}

.watch-player-card:hover .watch-player-avatar,
.watch-player-card:hover .watch-player-avatar-placeholder {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 0 #0d4f9f, 0 0 30px rgba(19, 104, 206, 0.5);
}

.host-crown {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 3rem;
    animation: bounce 1s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.watch-player-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: #46178f;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.host-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd21e 0%, #ffa602 100%);
    color: #46178f;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #cc8502;
}

.player-count-badge {
    text-align: center;
    background: linear-gradient(135deg, #1368ce 0%, #0d4f9f 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 0 #0a3d7a;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 300px;
}

.count-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.count-label {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Watch Game Active State */
.watch-game-active {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}



.watch-game-active > .watch-current-turn,
.watch-game-active > .watch-players-sidebar {
    display: inline-block;
}

.watch-game-active {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.watch-game-active {
    grid-template-areas: 
        "header header"
        "main sidebar";
}

.watch-game-active > .watch-game-info-header {
    grid-area: header;
}

.watch-game-active > .watch-current-turn {
    grid-area: main;
}

.watch-game-active > .watch-players-sidebar {
    grid-area: sidebar;
}

.watch-current-turn {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
}

.turn-header h2 {
    font-size: 2.5rem;
    color: #46178f;
    font-weight: 900;
    margin-top: 2rem;
    margin-bottom: 6rem;
    text-transform: uppercase;
}

.watch-turn-display {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 3rem;
    margin-bottom: 2rem;
}

.watch-player-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.watch-player-avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
}

.watch-player-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid #1368ce;
    box-shadow: 0 10px 0 #0d4f9f, 0 0 40px rgba(19, 104, 206, 0.6);
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 10px 0 #0d4f9f, 0 0 40px rgba(19, 104, 206, 0.6);
    }
    50% {
        box-shadow: 0 10px 0 #0d4f9f, 0 0 60px rgba(19, 104, 206, 1);
        transform: scale(1.05);
    }
}

.watch-player-crown {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 3rem;
    animation: crownFloat 2s ease-in-out infinite;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.watch-player-name {
    font-size: 2rem;
    font-weight: 900;
    color: #46178f;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.watch-dice-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.watch-action-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1368ce;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ffd21e 0%, #ffa602 100%);
    border-radius: 15px;
    box-shadow: 0 6px 0 #cc8502;
    text-align: center;
}

.watch-players-sidebar {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #46178f;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.watch-players-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.watch-list-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.watch-list-player.is-active {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    border-color: #26890d;
    border-width: 4px;
    transform: scale(1.05);
    box-shadow: 0 6px 0 #1a6009;
    animation: activePlayerPulse 1.5s ease-in-out infinite;
}

@keyframes activePlayerPulse {
    0%, 100% {
        box-shadow: 0 6px 0 #1a6009;
    }
    50% {
        box-shadow: 0 8px 0 #1a6009, 0 0 20px rgba(38, 137, 13, 0.5);
    }
}

.list-player-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.list-player-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #1368ce;
    box-shadow: 0 3px 0 #0d4f9f;
}

.watch-list-player.is-active .list-player-avatar {
    border-color: #26890d;
    box-shadow: 0 4px 0 #1a6009;
}

.active-indicator {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #26890d;
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.list-player-info {
    flex: 1;
}

.list-player-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: #46178f;
    text-transform: uppercase;
}

.watch-list-player.is-active .list-player-name {
    color: #26890d;
}

/* Game Screen New Styles */
.game-container-new {
            padding: 1rem;
        margin: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: auto;
}

.game-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.game-info-badge {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;
}

.game-info-badge.game-code {
    background: linear-gradient(135deg, #ffd21e 0%, #ffa602 100%);
    color: #46178f;
    box-shadow: 0 4px 0 #cc8502;
    cursor: pointer;
}

.game-info-badge.game-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #cc8502;
}

.game-info-badge.round-info {
    background: linear-gradient(135deg, #1368ce 0%, #0d4f9f 100%);
    color: white;
    box-shadow: 0 4px 0 #0a3d7a;
}

.game-main-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.current-turn-panel {
    text-align: center;
}

.turn-title {
    font-size: 1.8rem;
    color: #46178f;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.turn-status {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1368ce;
}

.turn-status p {
    margin: 0.5rem 0;
}

.game-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.game-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

.game-action-btn .btn-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.25rem;
}

.game-action-btn .btn-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-action-btn:not(:disabled):hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
}

.game-action-btn:not(:disabled):active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.game-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.roll-btn {
    background: linear-gradient(135deg, #e21b3c 0%, #b31530 100%);
    color: white;
}

.roll-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #ff2547 0%, #e21b3c 100%);
}

.continue-btn {
    background: linear-gradient(135deg, #26890d 0%, #1a6009 100%);
    color: white;
}

.continue-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #2ea310 0%, #26890d 100%);
}

.message-btn {
    background: linear-gradient(135deg, #1368ce 0%, #0d4f9f 100%);
    color: white;
}

.message-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #1a7de8 0%, #1368ce 100%);
}

.gif-btn {
    background: linear-gradient(135deg, #46178f 0%, #2e0e5e 100%);
    color: white;
}

.gif-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #5a1eb3 0%, #46178f 100%);
}

.end-btn {
    background: linear-gradient(135deg, #ffa602 0%, #cc8502 100%);
    color: white;
}

.end-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #ffb31f 0%, #ffa602 100%);
}

.message-input-area {
    margin-top: 1rem;
}

.game-message-input {
    width: 100%;
    padding: 1rem;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.game-message-input:focus {
    outline: none;
    border-color: #1368ce;
    box-shadow: 0 0 0 3px rgba(19, 104, 206, 0.2);
}
