/* 
 * Trash Mafia NFT Collection Styles
 * Version: 2.0.0
 */

/* Base Styles */
:root {
    --primary-color: #00b3ff;
    --secondary-color: #0077ff;
    --accent-color: #00ffff;
    --background-color: #0a1525;
    --card-bg-color: rgba(13, 25, 42, 0.8);
    --text-color: #ffffff;
    --border-color: rgba(0, 179, 255, 0.3);
    --error-color: #ff3860;
    --success-color: #23d160;
    --font-family: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

button {
    cursor: pointer;
    font-family: var(--font-family);
}

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

/* Background Effects */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/stars-bg.html') repeat;
    z-index: -2;
}

.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: radial-gradient(
        circle at center,
        rgba(0, 179, 255, 0.1) 0%,
        rgba(0, 119, 255, 0.05) 50%,
        rgba(10, 21, 37, 0) 70%
    );
    border-radius: 50%;
    opacity: 0.5;
    transition: transform 0.5s ease;
}

.cloud1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
}

.cloud2 {
    width: 800px;
    height: 800px;
    bottom: -300px;
    right: -200px;
}

.cloud3 {
    width: 500px;
    height: 500px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

/* Header & Navigation */
header {
    padding: 1rem 0;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background-color: rgba(10, 21, 37, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 1rem;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    margin-bottom: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nft-showcase {
    position: relative;
}

.nft-card-hero {
    width: 300px;
    background-color: var(--card-bg-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nft-card-hero:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 179, 255, 0.3);
}

.nft-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.nft-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.nft-info {
    padding: 1.5rem;
}

.nft-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.nft-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contract Address */
.contract-address {
    margin-top: 1rem;
}

.contract-address p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.address-box {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.address-box span {
    flex: 1;
    font-family: monospace;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    padding: 0.25rem;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.btn-copy:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--background-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.btn-connect {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-connect:hover {
    background-color: var(--accent-color);
}

/* Sections */
section {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Wallet Connect Section */
.wallet-connect-section {
    text-align: center;
}

.wallet-status {
    background-color: var(--card-bg-color);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* My NFTs Section */
.my-nfts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.nft-card {
    background-color: var(--card-bg-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.nft-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 179, 255, 0.2);
}

.nft-traits-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.trait-tag {
    background-color: rgba(0, 179, 255, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.7rem;
}

.no-nfts-message {
    text-align: center;
    padding: 3rem;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.no-nfts-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-nfts-message p {
    margin-bottom: 1.5rem;
}

/* Mint Section */
.mint-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.mint-info {
    flex: 1;
}

.mint-card {
    background-color: var(--card-bg-color);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.mint-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mint-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mint-card p {
    margin-bottom: 1.5rem;
}

.mint-details {
    margin-bottom: 1.5rem;
}

.mint-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.mint-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
}

.detail-value {
    color: var(--primary-color);
}

.mint-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quantity-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.qty-btn {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.qty-btn:hover {
    background-color: var(--accent-color);
}

#mint-quantity {
    width: 50px;
    text-align: center;
    margin: 0 0.5rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.25rem;
    border-radius: 5px;
}

.mint-preview {
    flex: 1;
    display: flex;
    justify-content: center;
}

.preview-container {
    width: 300px;
    text-align: center;
}

.preview-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-overlay i {
    font-size: 2rem;
    color: var(--primary-color);
}

.preview-image:hover .preview-overlay {
    opacity: 1;
}

.preview-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mint-status {
    margin-top: 1rem;
    min-height: 60px;
}

/* About Section */
.about-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    margin-bottom: 2rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.trait-card {
    background-color: var(--card-bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease;
}

.trait-card:hover {
    transform: translateY(-5px);
}

.trait-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trait-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.trait-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.about-image {
    flex: 1;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--background-color);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

.nft-details-container {
    display: flex;
    gap: 2rem;
}

.nft-details-image {
    flex: 1;
    max-width: 400px;
}

.nft-details-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.nft-details-info {
    flex: 1;
}

.nft-details-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.nft-owner {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.nft-traits h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.trait-item {
    background-color: var(--card-bg-color);
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.trait-name {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.trait-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.nft-actions {
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: rgba(10, 21, 37, 0.8);
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    margin-right: 1rem;
}

.footer-text {
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: var(--primary-color);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, 900px, 0, 0);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--accent-color);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 1px 0 var(--secondary-color);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(20px, 900px, 21px, 0);
    }
    20% {
        clip: rect(86px, 900px, 40px, 0);
    }
    40% {
        clip: rect(30px, 900px, 15px, 0);
    }
    60% {
        clip: rect(76px, 900px, 92px, 0);
    }
    80% {
        clip: rect(64px, 900px, 35px, 0);
    }
    100% {
        clip: rect(57px, 900px, 70px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(57px, 900px, 70px, 0);
    }
    20% {
        clip: rect(64px, 900px, 35px, 0);
    }
    40% {
        clip: rect(76px, 900px, 92px, 0);
    }
    60% {
        clip: rect(30px, 900px, 15px, 0);
    }
    80% {
        clip: rect(86px, 900px, 40px, 0);
    }
    100% {
        clip: rect(20px, 900px, 21px, 0);
    }
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-spinner i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

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

/* Error & Success Messages */
.error-message,
.success-message {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

/* Highlight Animation for Newly Minted NFTs */
@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 179, 255, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 179, 255, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 179, 255, 0);
        transform: scale(1);
    }
}

.highlight-animation {
    animation: highlight-pulse 1s ease-in-out 3;
    border: 2px solid var(--primary-color);
}

.error-message {
    background-color: rgba(255, 56, 96, 0.1);
    border: 1px solid var(--error-color);
}

.success-message {
    background-color: rgba(35, 209, 96, 0.1);
    border: 1px solid var(--success-color);
}

.error-message i,
.success-message i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.error-message i {
    color: var(--error-color);
}

.success-message i {
    color: var(--success-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .nft-showcase-about {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 1rem 0;
    }
    
    /* Improved header and navigation for mobile */
    header {
        padding: 0.5rem 0;
        position: sticky;
        top: 0;
        z-index: 99;
        background-color: var(--background-color);
    }
    
    nav {
        padding: 0.5rem 3%;
        position: relative;
        flex-wrap: wrap;
        justify-content: space-between;
        border-radius: 5px;
    }
    
    .logo {
        flex: 1;
        justify-content: flex-start;
        max-width: 70%;
    }
    
    .logo img {
        height: 32px;
        width: auto;
        margin-right: 0.5rem;
    }
    
    .logo span {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .menu-toggle {
        display: block;
        z-index: 101;
        font-size: 1.5rem;
        margin-right: 0.5rem;
        order: 2;
    }
    
    .btn-connect {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        order: 3;
        margin-left: auto;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(10, 21, 37, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 100;
        order: 4;
        width: 100%;
    }
    
    .nav-links.active {
        right: 0;
        border-left: 1px solid var(--border-color);
        padding-top: 60px; /* Add padding to avoid overlap with header */
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a:hover {
        background-color: rgba(0, 179, 255, 0.1);
        border-radius: 5px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .mint-content {
        flex-direction: column;
    }
    
    .nft-details-container {
        flex-direction: column;
    }
    
    .nft-details-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .traits-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Header and navigation improvements for small screens */
    header {
        padding: 0.3rem 0;
    }
    
    nav {
        padding: 0.5rem 2%;
        margin-bottom: 1rem;
    }
    
    .logo {
        max-width: 60%;
    }
    
    .logo img {
        height: 28px;
        margin-right: 0.3rem;
    }
    
    .logo span {
        font-size: 0.9rem;
    }
    
    .menu-toggle {
        font-size: 1.3rem;
        margin-right: 0.3rem;
    }
    
    .btn-connect {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    /* Other mobile styles */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .traits-grid {
        grid-template-columns: 1fr;
    }
    
    .nft-showcase-about {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 5% auto;
        width: 95%;
    }
    
    .close-modal {
        top: 0.5rem;
        right: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .nft-card-hero {
        width: 250px;
    }
    
    .nft-image-container {
        height: 250px;
    }
    
    .preview-container {
        width: 250px;
    }
    
    .preview-image {
        height: 250px;
    }
    
    .my-nfts-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .mint-card {
        padding: 1.5rem 1rem;
    }
    
    .mint-detail {
        font-size: 0.9rem;
    }
    
    .wallet-status {
        padding: 1.5rem 1rem;
    }
    
    .address-box {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .address-box span {
        width: 100%;
        text-align: center;
    }
    
    .btn-copy {
        margin: 0 auto;
        display: block;
    }
}

/* Additional styles for very small screens */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .nft-card-hero, 
    .preview-container {
        width: 220px;
    }
    
    .nft-image-container,
    .preview-image {
        height: 220px;
    }
    
    .mint-icon {
        font-size: 2rem;
    }
    
    .mint-card h3 {
        font-size: 1.2rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .nft-details-info h2 {
        font-size: 1.5rem;
    }
    
    .trait-item {
        padding: 0.5rem;
    }
}
