body { 
    font-family: 'Inter', sans-serif; 
    background-color: #0c0a09;
}

.germania {
  font-family: "Germania One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.glass-card {
    background-color: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.token-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.4);
}
#nft-display-area {
    transition: opacity 0.5s ease-in-out;
}
.loader {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* New Styles for Mod Selectors */
.mod-radio {
    display: none; /* Hide the actual radio button */
}

.mod-thumb-container, .mod-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.05);
}

.mod-thumb {
    object-fit: contain;
    padding: 8px;
}

.mod-thumb-container:hover, .mod-thumb:hover {
    border-color: #4f46e5;
}

/* Style for the selected mod */
.mod-radio:checked + .mod-thumb,
.mod-radio:checked + .mod-thumb-container {
    border-color: #818cf8;
    box-shadow: 0 0 15px rgba(129, 140, 248, 0.5);
}