* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

:root {
    --primary: #8a2be2;
    --secondary: #4a00e0;
    --dark: #121212;
    --light: #f8f8f8;
    --gray: #2d2d2d;
    --accent: #00d4ff;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray);
    position: sticky;
    top: 0;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
}

.logo i {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.wallet-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.wallet-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 14px;
}

.wallet-info span {
    display: block;
}

.hidden {
    display: none;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.stats {
    display: flex;
    gap: 40px;
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.stat p {
    color: #ccc;
}

.hero-visual {
    display: flex;
    justify-content: center;
    height: 580px;
    padding: 0;
    overflow: hidden;
    
}

.nft-showcase {
    position: relative;
    padding: 0;
    height: 100%;
    
}

.nft-card {
    background: var(--gray);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    height: 100%;
}


}

.nft-card:hover {
    transform: translateY(-10px) rotate(0.5deg);
}

.nft-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.nft-info {
    padding: 20px;
}

.nft-info h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Featured NFTs */
.featured {
    padding: 80px 0;
}

.featured h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.nft-item {
    background: var(--gray);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.nft-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.nft-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.nft-details {
    padding: 20px;
}

.nft-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.nft-creator {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.nft-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Collections */
.collections {
    padding: 80px 0;
    background: rgba(45, 45, 45, 0.3);
}

.collections h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.collection-card {
    background: var(--gray);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-10px);
}

.collection-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collection-info {
    padding: 20px;
}

.collection-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Create Section */
.create {
    padding: 80px 0;
}

.create-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.create-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.create-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.create-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.step p {
    color: #ccc;
}

/* Footer */
footer {
    background: var(--gray);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .stats {
        justify-content: space-between;
    }
    
    .create-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

<DOCUMENT filename="style.css">
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #8a2be2;
    --secondary: #4a00e0;
    --dark: #121212;
    --light: #f8f8f8;
    --gray: #2d2d2d;
    --accent: #00d4ff;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray);
    position: sticky;
    top: 0;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
}

.logo i {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.wallet-btn, .disconnect-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 0.9rem;
}

.disconnect-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    margin-top: 5px;
}

.wallet-btn:hover, .disconnect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.wallet-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 14px;
}

.wallet-info span {
    display: block;
}

.hidden {
    display: none;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

/* ... (rest of hero styles unchanged) ... */

/* Featured NFTs */
.featured {
    padding: 80px 0;
}

.featured h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.search-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

#nftSearch, #sortSelect {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--gray);
    background: var(--gray);
    color: var(--light);
    font-size: 1rem;
    width: 300px;
}

#sortSelect {
    width: auto;
}

/* NFT Grid (unchanged) */

/* Collections (unchanged) */

/* Create Section (unchanged) */

/* Footer (unchanged) */

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--gray);
    padding: 30px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--light);
}

#modalImage {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

#modalDescription {
    color: #ccc;
    margin: 15px 0;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: -100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-out;
}

.notification.show {
    right: 20px;
}

/* Responsive Design (enhanced) */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-filter {
        flex-direction: column;
        align-items: center;
    }
    
    #nftSearch, #sortSelect {
        width: 100%;
    }
    
    /* Other responsive styles unchanged */
}
</DOCUMENT>
