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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #111;
    border-bottom: 1px solid #333;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.wallet {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#account, #network {
    color: #6c5ce7;
    font-size: 0.9rem;
}

button {
    background: linear-gradient(45deg, #6c5ce7, #a463f5);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.1);
}

button:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Hero section */
.hero {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(145deg, #111, #1a1a1a);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
}

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

.nft-preview {
    max-width: 100%;
    max-height: 300px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
    border: 2px solid #6c5ce7;
}

.hero-text {
    flex: 2;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #6c5ce7, #a463f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-stats span {
    background-color: #222;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid #6c5ce7;
    color: #a463f5;
}

/* Minting info section */
.info {
    background-color: #111;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #333;
}

.info h2 {
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #6c5ce7, #a463f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info p {
    margin: 0.75rem 0;
    font-size: 1.1rem;
    color: #ddd;
}

.info p span {
    color: #fff;
    font-weight: bold;
    background: #222;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    border: 1px solid #6c5ce7;
}

/* Your NFT section */
.nft-list {
    background-color: #111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.nft-list h2 {
    margin-bottom: 1rem;
    color: #6c5ce7;
}

#nftList {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

#nftList li {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    min-width: 100px;
    text-align: center;
    color: #a463f5;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.2);
}

/* Footer */
footer {
    background-color: #111;
    border-top: 1px solid #333;
    padding: 3rem 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #6c5ce7, #a463f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-social a {
    color: #a0a0a0;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #6c5ce7;
    transform: translateY(-5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    text-align: center;
    border-top: 1px solid #333;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #6c5ce7;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .info p {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
