/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --font-family-sans-serif: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
        "Courier New", monospace;
}

body {
    font-family: var(--font-family-sans-serif);
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Simple Background - Removed to allow body background to show */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ffff, #ff1493);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.connect-btn {
    background: linear-gradient(45deg, #00ffff, #ff1493);
    border: none;
    padding: 0.7rem 1.5rem;
    color: #000;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    position: relative;
    background-image: url('assets/img/magic-and-villains-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 50px rgba(255, 20, 147, 0.7);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.cta-button {
    background: linear-gradient(45deg, #00ffff, #ff1493);
    border: none;
    padding: 1rem 2rem;
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
}

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

.character-frame {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neon-circle {
    width: 300px;
    height: 300px;
    border: 3px solid;
    border-image: linear-gradient(45deg, #00ffff, #ff1493, #8a2be2) 1;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    position: relative;
}

.neon-circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 20, 147, 0.1));
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3), inset 0 0 50px rgba(255, 20, 147, 0.2);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Featured Villain Themes */
.villain-themes {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    scroll-margin-top: 60px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.theme-card {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.theme-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #8b00ff, #ff0080, #8b00ff);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 128, 0.5);
    background: rgba(0, 0, 0, 0.5);
}

.theme-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.theme-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #8b00ff, #ff0080, #8b00ff);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.theme-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.theme-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.buy-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem;
    color: #ffffff;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.buy-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Event Customization Section */
.event-customization {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.customization-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.customization-header p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.customization-btn {
    background: transparent;
    border: 2px solid #00ffff;
    padding: 0.8rem 2rem;
    color: #00ffff;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customization-btn:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.customization-card {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.customization-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #8b00ff, #ff0080, #8b00ff);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.customization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 128, 0.5);
    background: rgba(0, 0, 0, 0.5);
}

.customization-image {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.customization-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #8b00ff, #ff0080, #8b00ff);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    pointer-events: none;
    z-index: 1;
}

/* Event Customization themed cards - unified dark theme */
.customization-image::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    opacity: 0.4;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.customization-card:nth-child(1) .customization-image::after {
    content: "🏰";
}

.customization-card:nth-child(2) .customization-image::after {
    content: "🔮";
}

.customization-card:nth-child(3) .customization-image::after {
    content: "👗";
}

.customization-card:nth-child(4) .customization-image::after {
    content: "🍎";
}

.customization-card:nth-child(5) .customization-image::after {
    content: "📸";
}

.customization-card:nth-child(6) .customization-image::after {
    content: "💡";
}

.customization-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.customization-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.bid-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem;
    color: #ffffff;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bid-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Create Section */
.create-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin-bottom: 4rem;
}

.create-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.create-text {
    flex: 1;
}

.create-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.create-text ul {
    list-style: none;
    font-size: 1.2rem;
}

.create-text li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.create-text li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

.create-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.create-character {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(138, 43, 226, 0.3));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.create-character::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: sweep 4s linear infinite;
}

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

/* Top Collections */
.top-collections {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.top-collections h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, #00ffff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.collection-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.collection-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.col-img {
    aspect-ratio: 1;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.collection-item:nth-child(1) .col-img:nth-child(1) {
    background: linear-gradient(135deg, #2d1b69 0%, #8b2db5 50%, #000000 100%);
}

.collection-item:nth-child(1) .col-img:nth-child(2) {
    background: linear-gradient(225deg, #8b0000 0%, #dc143c 50%, #000000 100%);
}

.collection-item:nth-child(1) .col-img:nth-child(3) {
    background: linear-gradient(45deg, #006400 0%, #32cd32 50%, #000000 100%);
}

.collection-item:nth-child(1) .col-img:nth-child(4) {
    background: linear-gradient(315deg, #4b0082 0%, #9932cc 50%, #000000 100%);
}

.collection-item:nth-child(2) .col-img:nth-child(1) {
    background: linear-gradient(180deg, #8b0000 0%, #000000 50%, #ffd700 100%);
}

.collection-item:nth-child(2) .col-img:nth-child(2) {
    background: linear-gradient(90deg, #2f4f4f 0%, #008b8b 50%, #000000 100%);
}

.collection-item:nth-child(2) .col-img:nth-child(3) {
    background: linear-gradient(270deg, #800080 0%, #ff1493 50%, #000000 100%);
}

.collection-item:nth-child(2) .col-img:nth-child(4) {
    background: linear-gradient(0deg, #b8860b 0%, #ffd700 50%, #000000 100%);
}

.col-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-item:hover .col-img::before {
    opacity: 1;
}

.collection-item h4 {
    font-size: 1.5rem;
    text-align: center;
    color: #00ffff;
}

/* Top Artists */
.top-artists {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.top-artists h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.2);
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.artist-card:nth-child(1) .artist-avatar {
    background: radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.8) 0%, transparent 70%),
        linear-gradient(135deg, #2d1b69 0%, #8b2db5 100%);
}

.artist-card:nth-child(2) .artist-avatar {
    background: radial-gradient(circle at 70% 30%, rgba(139, 0, 0, 0.8) 0%, transparent 70%),
        linear-gradient(225deg, #8b0000 0%, #dc143c 100%);
}

.artist-card:nth-child(3) .artist-avatar {
    background: radial-gradient(circle at 50% 20%, rgba(0, 100, 0, 0.8) 0%, transparent 70%),
        linear-gradient(180deg, #006400 0%, #32cd32 100%);
}

.artist-card:nth-child(4) .artist-avatar {
    background: radial-gradient(circle at 40% 60%, rgba(75, 0, 130, 0.8) 0%, transparent 70%),
        linear-gradient(315deg, #4b0082 0%, #9932cc 100%);
}

.artist-card:nth-child(5) .artist-avatar {
    background: radial-gradient(circle at 60% 40%, rgba(105, 105, 105, 0.8) 0%, transparent 70%),
        linear-gradient(45deg, #2f2f2f 0%, #696969 100%);
}

.artist-card:nth-child(6) .artist-avatar {
    background: radial-gradient(circle at 50% 50%, rgba(184, 134, 11, 0.8) 0%, transparent 70%),
        linear-gradient(90deg, #b8860b 0%, #ffd700 100%);
}

.artist-avatar::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0.6;
}

.artist-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff1493;
}

.artist-card p {
    color: #cccccc;
}

/* Join Us Section */
.join-us {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin-bottom: 4rem;
}

.join-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.join-character {
    flex: 1;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 20, 147, 0.3));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.join-character::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slide 3s infinite;
}

@keyframes slide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.join-text {
    flex: 1;
    text-align: center;
}

.join-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.join-btn {
    background: linear-gradient(45deg, #00ffff, #ff1493);
    border: none;
    padding: 1rem 2.5rem;
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    padding: 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .character-frame {
        width: 250px;
        height: 250px;
    }

    .neon-circle {
        width: 200px;
        height: 200px;
    }

    .create-content,
    .join-content {
        flex-direction: column;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .market-header h2,
    .create-text h2,
    .top-collections h2,
    .top-artists h2,
    .join-text h2 {
        font-size: 2rem;
    }

    .themes-grid,
    .customization-grid {
        grid-template-columns: 1fr;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
