/* Authentication Components Styles */

/* Login Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.auth-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-content {
    background: linear-gradient(135deg, var(--colors-darkblue) 0%, rgba(6, 208, 231, 0.1) 100%);
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 20px;
    padding: 4rem;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.auth-modal-header h2 {
    font-size: 3.2rem;
    margin: 0 0 1rem 0;
    background: linear-gradient(150deg, white 40%, var(--colors-azure) 100%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}

.auth-modal-header p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.auth-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.4rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.auth-modal-close:hover {
    color: var(--colors-azure);
    background: rgba(6, 208, 231, 0.1);
}

/* Authentication Options */
.auth-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.auth-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.8rem 2.4rem;
    border: 2px solid rgba(6, 208, 231, 0.3);
    border-radius: 12px;
    background: rgba(6, 208, 231, 0.05);
    color: var(--colors-base);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: var(--fontWeights-bold);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.auth-option:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 208, 231, 0.2), transparent);
    transition: left 0.5s ease;
}

.auth-option:hover:before {
    left: 100%;
}

.auth-option:hover {
    border-color: var(--colors-azure);
    background: rgba(6, 208, 231, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 208, 231, 0.3);
}

.auth-option.metamask {
    border-color: #f6851b;
    background: rgba(246, 133, 27, 0.1);
}

.auth-option.metamask:hover {
    border-color: #f6851b;
    background: rgba(246, 133, 27, 0.2);
    box-shadow: 0 10px 30px rgba(246, 133, 27, 0.3);
}

.auth-option.google {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.1);
}

.auth-option.google:hover {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.2);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.auth-option-icon {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 2.4rem;
}

.auth-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-divider span {
    padding: 0 1.5rem;
}

/* Loading States */
.auth-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
}

.auth-loading.show {
    display: flex;
}

.auth-spinner {
    width: 4rem;
    height: 4rem;
    border: 3px solid rgba(6, 208, 231, 0.3);
    border-top: 3px solid var(--colors-azure);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.auth-loading-text {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* User Dashboard Header */
.user-dashboard-header {
    display: none;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background: rgba(6, 208, 231, 0.1);
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.user-dashboard-header.show {
    display: flex;
}

.user-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--colors-azure), var(--colors-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.6rem;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 1.6rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-base);
    margin: 0;
}

.user-method {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.user-wallet-info {
    font-size: 1.2rem;
    color: var(--colors-azure);
    margin: 0.2rem 0 0 0;
}

.user-actions {
    display: flex;
    gap: 1rem;
}

.user-action-btn {
    padding: 0.8rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--colors-base);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--colors-azure);
}

.user-action-btn.logout {
    border-color: var(--colors-danger);
    color: var(--colors-danger);
}

.user-action-btn.logout:hover {
    background: rgba(190, 42, 42, 0.2);
}

/* Pairing Banner - Subtle Design */
.pairing-banner {
    display: none;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(6, 208, 231, 0.08), rgba(6, 208, 231, 0.04));
    border: 1px solid rgba(6, 208, 231, 0.2);
    border-radius: 8px;
    margin: 1rem 0;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.pairing-banner.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.pairing-banner.subtle {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
}

.pairing-banner.auto-hide {
    opacity: 0.6;
    transform: scale(0.98);
}

.pairing-banner-icon {
    font-size: 1.6rem;
    color: var(--colors-azure);
    min-width: 20px;
}

.pairing-banner-content {
    flex: 1;
    min-width: 0;
}

.pairing-banner-title {
    font-size: 1.3rem;
    font-weight: var(--fontWeights-medium);
    color: var(--colors-base);
    margin: 0 0 0.2rem 0;
    line-height: 1.3;
}

.pairing-banner-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.3;
}

.pairing-banner-btn {
    padding: 0.5rem 1rem;
    background: rgba(6, 208, 231, 0.2);
    color: var(--colors-azure);
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: var(--fontWeights-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
}

.pairing-banner-btn:hover {
    background: rgba(6, 208, 231, 0.3);
    border-color: rgba(6, 208, 231, 0.5);
    transform: translateY(-1px);
}

.pairing-banner-dismiss {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    min-width: 24px;
}

.pairing-banner-dismiss:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Notification Toast */
.auth-toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--colors-darkblue);
    border: 1px solid var(--colors-azure);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    color: var(--colors-base);
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10001;
    max-width: 300px;
}

.auth-toast.show {
    transform: translateX(0);
}

.auth-toast.success {
    border-color: var(--colors-green);
    background: rgba(0, 227, 124, 0.1);
}

.auth-toast.error {
    border-color: var(--colors-danger);
    background: rgba(190, 42, 42, 0.1);
}

.auth-toast.warning {
    border-color: var(--colors-yellow);
    background: rgba(222, 167, 19, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .auth-modal-content {
        padding: 3rem 2rem;
        margin: 2rem;
        border-radius: 16px;
    }

    .auth-modal-header h2 {
        font-size: 2.8rem;
    }

    .auth-option {
        padding: 1.5rem 2rem;
        font-size: 1.5rem;
    }

    .user-dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .user-actions {
        justify-content: center;
    }

    .pairing-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .pairing-banner.subtle {
        padding: 0.8rem;
    }
    
    .pairing-banner-content {
        text-align: center;
    }
    
    .pairing-banner-title {
        font-size: 1.2rem;
    }
    
    .pairing-banner-text {
        font-size: 1rem;
    }
    
    .pairing-banner-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        min-width: 80px;
    }
    
    .pairing-banner-dismiss {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.4rem;
    }

    .auth-toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

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

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

.auth-modal-content {
    animation: slideInFromBottom 0.4s ease;
}

/* Focus states for accessibility */
.auth-option:focus,
.user-action-btn:focus,
.pairing-banner-btn:focus {
    outline: 2px solid var(--colors-azure);
    outline-offset: 2px;
}

/* Loading overlay for buttons */
.auth-option.loading {
    pointer-events: none;
    position: relative;
}

.auth-option.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Subtle User Dashboard - Compact Widget Style */
.user-dashboard-header.subtle-dashboard {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 208, 231, 0.08);
    border: 1px solid rgba(6, 208, 231, 0.2);
    border-radius: 20px;
    margin: 0;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: 200px;
}

.user-dashboard-header.subtle-dashboard.show {
    display: flex;
}

.user-info-compact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 0;
}

.user-info-compact .user-avatar {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
}

.user-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.user-name-small {
    font-size: 1.2rem;
    font-weight: var(--fontWeights-medium);
    color: var(--colors-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

.user-status-small {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.user-actions-compact {
    display: flex;
    gap: 0.5rem;
}

.user-action-btn-small {
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--colors-base);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.user-action-btn-small:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--colors-azure);
}

.user-action-btn-small.logout {
    border-color: var(--colors-danger);
    color: var(--colors-danger);
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.user-action-btn-small.logout:hover {
    background: rgba(190, 42, 42, 0.2);
}

/* NFT Land Purchase Section Styles */
.nft-land-purchase {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.nft-land-purchase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDYsIDIwOCwgMjMxLCAwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIiAvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.nft-land-purchase .container {
    position: relative;
    z-index: 1;
}

.nft-purchase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.nft-purchase-header h2 {
    font-size: 4.5rem;
    background: linear-gradient(150deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.nft-purchase-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* NFT Collection Display */
.nft-collection-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.nft-image-display {
    position: relative;
    text-align: center;
}

.nft-main-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.nft-main-image:hover {
    transform: scale(1.05);
}

.nft-rarity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: var(--fontWeights-bold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* NFT Details */
.nft-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.nft-title {
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: var(--fontWeights-bold);
}

.nft-description {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.nft-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.nft-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nft-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: var(--fontWeights-bold);
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.nft-stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Purchase Actions */
.nft-purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nft-price-display {
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.nft-price {
    font-size: 3rem;
    font-weight: var(--fontWeights-bold);
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.nft-price-usd {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .user-dashboard-header.subtle-dashboard {
        max-width: 160px;
        padding: 0.4rem 0.8rem;
    }
    
    .user-name-small {
        max-width: 60px;
        font-size: 1.1rem;
    }
    
    .user-status-small {
        font-size: 0.9rem;
    }
    
    .nft-collection-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .nft-purchase-header h2 {
        font-size: 3rem;
    }
    
    .nft-details {
        padding: 2rem;
    }
    
    .nft-stats {
        grid-template-columns: 1fr;
    }
}

/* NFT Purchase Section - Proper Classes */
.nft-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 4rem;
    backdrop-filter: blur(10px);
    margin: 2rem 0;
}

.nft-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.nft-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nft-image {
    text-align: center;
    position: relative;
}

.land-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.land-image:hover {
    transform: scale(1.05);
}

/* Wallet Connection Styles */
.wallet-connection {
    text-align: center;
    padding: 2rem;
    background: rgba(6, 208, 231, 0.1);
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 15px;
}

.connection-prompt {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.wallet-btn {
    margin: 1.5rem 0;
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
}

.connection-benefits {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    text-align: left;
    margin-top: 2rem;
}

/* Wallet Status Display */
.wallet-status-display {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.balance-label {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.balance-amount {
    font-size: 2.2rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-green);
    margin: 0;
}

.balance-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 227, 124, 0.1);
    border: 1px solid var(--colors-green);
    border-radius: 8px;
}

.balance-status.insufficient {
    background: rgba(190, 42, 42, 0.1);
    border-color: var(--colors-danger);
}

.status-icon {
    font-size: 1.4rem;
}

.status-text {
    font-size: 1.4rem;
    color: var(--colors-green);
}

.balance-status.insufficient .status-text {
    color: var(--colors-danger);
}

/* Purchase Section */
.purchase-section {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 15px;
}

.nft-buy-btn {
    font-size: 1.8rem;
    padding: 1.5rem 3rem;
    margin-bottom: 1rem;
}

.nft-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

/* Owner State Styles */
.ownership-display {
    text-align: center;
}

.ownership-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(6, 208, 231, 0.15), rgba(6, 208, 231, 0.05));
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.stat-large {
    text-align: center;
}

.stat-large .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: var(--fontWeights-bold);
    color: var(--colors-azure);
    margin-bottom: 0.5rem;
}

.stat-large .stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.owner-benefits {
    background: rgba(0, 227, 124, 0.1);
    border: 1px solid var(--colors-green);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.owner-benefits h4 {
    color: var(--colors-green);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-align: center;
}

.owner-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.owner-benefits li {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.owner-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.owner-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: var(--fontWeights-bold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Insufficient Balance State */
.insufficient-balance-info {
    text-align: center;
}

.balance-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(190, 42, 42, 0.1);
    border: 1px solid var(--colors-danger);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.warning-icon {
    font-size: 3rem;
}

.warning-text {
    text-align: left;
}

.warning-text p {
    margin: 0.5rem 0;
    font-size: 1.4rem;
}

.warning-text .current-balance {
    color: var(--colors-danger);
    font-weight: var(--fontWeights-bold);
}

.warning-text .needed-balance {
    color: var(--colors-green);
    font-weight: var(--fontWeights-bold);
}

.purchase-options {
    background: rgba(6, 208, 231, 0.1);
    border: 1px solid rgba(6, 208, 231, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.purchase-options h4 {
    color: var(--colors-azure);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.purchase-options .btn {
    margin: 0.5rem;
    min-width: 200px;
}

/* NFT Features */
.nft-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--colors-yellow);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    min-width: 30px;
}

.feature-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--fontWeights-medium);
}

/* Mobile Responsive for NFT Section */
@media (max-width: 768px) {
    .nft-panel {
        padding: 2rem;
    }
    
    .nft-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .ownership-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .owner-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .balance-warning {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .warning-text {
        text-align: center;
    }
    
    .purchase-options .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .nft-features {
        grid-template-columns: 1fr;
    }
    
    .connection-benefits {
        text-align: center;
    }
} 