/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a4b5c, #2d8a99, #40c4d4);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.connect-wallet-btn {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    min-width: 150px;
    justify-content: center;
    flex-direction: column;
}

#balanceText {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 2px;
    line-height: 1.3;
}

#balanceText small {
    font-size: 10px;
    opacity: 0.8;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

/* Main Content */
.main-content {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Character Image */
.character-container {
    margin-bottom: 2rem;
}

.character-image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 2rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: white;
}

.coin-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Action Buttons */
.action-buttons {
    margin-bottom: 3rem;
}

.btn-buy {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Token Info */
.token-info {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
}

.token-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.price-section,
.listing-section,
.supply-section,
.distribution-section,
.exchanges-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-item,
.supply-item {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.blockchain-note,
.supply-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.listing-info {
    font-size: 1.1rem;
    color: white;
}

/* Distribution Grid */
.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.distribution-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.distribution-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.distribution-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
}

/* Exchanges Grid */
.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.exchange-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-align: center;
}

/* Social Section */
.social-section {
    margin-bottom: 2rem;
}

.social-btn {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a4b5c, #2d8a99);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    opacity: 0.7;
}

.modal h3 {
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.price-display {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    color: white;
}

.btn-confirm {
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .connect-wallet-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .main-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .character-image {
        width: 350px;
        height: 350px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .coin-title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .distribution-grid {
        grid-template-columns: 1fr;
    }
    
    .exchanges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .character-image {
        width: 300px;
        height: 300px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .coin-title {
        font-size: 2rem;
    }
    
    .exchanges-grid {
        grid-template-columns: 1fr;
    }
}



/* Manual Purchase Modal Styles */
.modal-content.manual-purchase {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
}

.modal-content.manual-purchase h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 28px;
}

.wallet-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    color: white;
    text-align: center;
}

.wallet-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.qr-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.wallet-address {
    margin-top: 20px;
}

.address-label {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.address-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.address-text {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    word-break: break-all;
    flex: 1;
    min-width: 200px;
}

.copy-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.purchase-options {
    margin-bottom: 25px;
}

.purchase-options h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.amount-btn {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    border: none;
    padding: 20px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.amount-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.amount-btn.selected {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
    transform: translateY(-3px);
}

.amount-btn.max-amount {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
}

.amount-btn.max-amount:hover,
.amount-btn.max-amount.selected {
    box-shadow: 0 8px 25px rgba(232, 67, 147, 0.4);
}

.sol-amount {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stitch-amount {
    font-size: 12px;
    opacity: 0.9;
}

.max-label {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.selected-amount {
    margin-bottom: 25px;
}

.selected-purchase {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.selected-purchase h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.purchase-details p {
    margin: 8px 0;
    font-size: 14px;
}

.purchase-details strong {
    font-size: 16px;
}

.delivery-time {
    opacity: 0.9;
    font-style: italic;
}

.instruction {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.no-selection {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 20px;
}

.instructions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #74b9ff;
}

.instructions h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

.instructions ol {
    margin: 15px 0;
    padding-left: 20px;
}

.instructions li {
    margin: 8px 0;
    color: #2c3e50;
    line-height: 1.5;
}

.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
}

/* Notification Styles */
.notification {
    animation: slideIn 0.3s ease-out;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-content.manual-purchase {
        margin: 10px;
        padding: 20px;
        max-height: 95vh;
    }
    
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .address-display {
        flex-direction: column;
        text-align: center;
    }
    
    .address-text {
        font-size: 10px;
        min-width: auto;
    }
    
    .copy-btn {
        width: 100%;
        margin-top: 10px;
    }
}


/* Listing Section Enhancements */
.listing-section .highlight {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.listing-date {
    font-size: 16px;
    color: #2c3e50;
    margin: 10px 0;
    text-align: center;
}

.listing-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

/* Distribution Section Enhancements */
.distribution-note {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 5px;
}

/* Exchange Listings Enhancements */
.listing-date-info {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.listing-date-main {
    font-size: 18px;
    margin-bottom: 10px;
}

.listing-price-highlight {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.exchange-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.exchange-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #74b9ff;
}

.exchange-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exchange-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.exchange-name {
    font-weight: bold;
    color: #2c3e50;
    font-size: 14px;
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.game-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
}

.game-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.game-launch,
.game-rewards,
.game-duration,
.game-total {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    color: #2c3e50;
    font-size: 14px;
    text-align: center;
    border-left: 4px solid #74b9ff;
}

.game-total {
    border-left-color: #00b894;
    font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .exchanges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .exchange-logo {
        width: 50px;
        height: 50px;
    }
    
    .listing-date-info {
        padding: 15px;
    }
    
    .listing-date-main,
    .listing-price-highlight {
        font-size: 16px;
    }
    
    .game-info {
        grid-template-columns: 1fr;
    }
}


/* Enhanced Exchange Logo Styles */
.exchange-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exchange-img:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.exchange-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.exchange-item {
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.exchange-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.exchange-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}


/* Mobile Instructions Styles */
.mobile-instructions {
    max-width: 400px;
    padding: 30px;
    text-align: left;
}

.mobile-instructions h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
}

.instruction-steps {
    margin: 20px 0;
}

.step {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.step-number {
    background: #4CAF50;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    color: #ffffff;
    line-height: 1.4;
}

.instruction-note {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: #4CAF50;
    text-align: center;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-instructions {
        margin: 10px;
        padding: 20px;
    }
    
    .step {
        padding: 12px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}


/* Professional Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 350px;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 0.3s ease-out;
}

.success-notification {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(56, 142, 60, 0.9));
    border-left: 4px solid #4CAF50;
}

.error-notification {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9), rgba(211, 47, 47, 0.9));
    border-left: 4px solid #f44336;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: white;
}

.notification-icon {
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-left: 12px;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .notification {
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .notification-content {
        padding: 14px 16px;
    }
    
    .notification-title {
        font-size: 15px;
    }
    
    .notification-message {
        font-size: 13px;
    }
}



/* Listing Price Styles */
.listing-price-actual {
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-radius: 10px;
    border-left: 4px solid #FFC107;
}

.actual-price {
    font-size: 18px;
    font-weight: 600;
    color: #FFC107;
    margin: 8px 0;
    text-align: center;
}

.listing-price-details {
    margin-top: 10px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(56, 142, 60, 0.1));
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.price-detail {
    font-size: 16px;
    font-weight: 600;
    color: #4CAF50;
    margin: 6px 0;
    text-align: center;
}

.price-detail strong {
    color: #2E7D32;
    font-size: 18px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .actual-price {
        font-size: 16px;
    }
    
    .price-detail {
        font-size: 14px;
    }
    
    .price-detail strong {
        font-size: 16px;
    }
}



/* Wallet Input Section */
.wallet-input-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wallet-input-section h3 {
    color: #40c4d4;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.wallet-input-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.wallet-input-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.wallet-input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.wallet-input:focus {
    outline: none;
    border-color: #40c4d4;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(64, 196, 212, 0.3);
}

.wallet-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.confirm-wallet-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #40c4d4, #2d8a99);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.confirm-wallet-btn:hover {
    background: linear-gradient(135deg, #36b3c4, #268a99);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 196, 212, 0.4);
}

.confirm-wallet-btn:disabled {
    background: #28a745 !important;
    cursor: not-allowed;
    transform: none;
}

.wallet-confirm-message {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    border-radius: 10px;
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.wallet-confirm-message i {
    font-size: 1.2rem;
}

/* Responsive Design for Wallet Input */
@media (max-width: 768px) {
    .wallet-input-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wallet-input {
        min-width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .confirm-wallet-btn {
        width: 100%;
    }
}

