 .card-area {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 15vh;
        
            z-index: 2;
        }

       .card {
		    position: absolute;
		    width: 180px;  /* Keeping the same width */
		    height: 248px; /* Adjusted from 210px to match 488x680 ratio */
		    background: white;
		    border: 2px solid #333;
		    border-radius: 10px;
		    transform-origin: top center;
		    transition: transform 0.3s ease;
		    cursor: pointer;
		    padding: 0; /* Remove any internal spacing */
		    overflow: hidden; /* Ensure image stays within border radius */
		
		
		touch-action: none;
	    -webkit-user-select: none;
	    user-select: none;
		}





		.drop-zone {
		    position: fixed;
		    width: 50vh;  /* 50% of viewport height for perfect circle */
		    height: 50vh;
		    top: 50%;
		    left: 50%;
		    transform: translate(-50%, -50%);
		    border: 3px solid #fffcfc;
		    border-radius: 50%;
		    
		    transition: border-color 0.3s ease;
		    z-index: 0;
		}
		.exile-zone {
		    position: fixed;
		    height: 122px;
		    top: 50%;
		    left: 6px;
		    border: 3px solid #fffcfc;
		    transition: border-color 0.3s ease;
		    z-index: 0;
		    min-width: 100px;
		    opacity: .1;
		}
		

		
		
		.drop-zone.active {
		    border-color: #ffd0d0;  /* Dark red when card is over it */
		}







.deck-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.deck-dialog {
    background: white;
    width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 24px;
}

.close-button {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.close-icon {
    width: 24px;
    height: 24px;
    color: #666;
    transition: color 0.2s ease;
}

.close-button:hover .close-icon {
    color: #333;
}

.dialog-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dialog-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: #2563eb;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dialog-button:hover {
    background-color: #1d4ed8;
}

/* Utility class for showing/hiding */
.hidden {
    display: none !important;
}





.drawACard, .viewDeck {
    height: 4vh;
    line-height: 4vh;
    padding: 0;
    opacity: 0.1;
    /* Add transition property for smooth opacity changes */
    transition: opacity 0.3s ease;
    cursor: pointer;
}










/* Move control styles */
.move-control {
    position: absolute;
    top: 0;
    left: 50%;
	transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.move-icon {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.move-icon:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Top controls styles */
.tap-icon {
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    z-index: 10;
    background-color:rgba(255, 255, 255, 0.5);
    border-radius: 200px;
}

.tap-button
	{
	
    background-color: unset;
    border: 0;
padding: 10px;
	}





.top-controls {
    position: absolute;
    bottom: -16px;
    left: -12px;
    width: 100%;
    height: 28px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
}

.plus-button {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.plus-button:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Utility classes */
.hidden {
    display: none !important;
}
