/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #E0E6ED;
    background: 
        url('背景/名称未設定のデザイン (18).png') center center / cover no-repeat fixed,
        linear-gradient(135deg, #0b0e14 0%, #121826 50%, #1a1f2e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, 
        #FF6B6B 0%, 
        #4ECDC4 14.28%, 
        #45B7D1 28.57%, 
        #96CEB4 42.86%, 
        #FFEAA7 57.14%, 
        #DDA0DD 71.43%, 
        #FF6B6B 85.71%, 
        #F5B042 100%);
    background-size: 200% 100%;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    animation: buttonRainbow 3s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #4ECDC4 0%, 
        #45B7D1 25%, 
        #96CEB4 50%, 
        #FFEAA7 75%, 
        #DDA0DD 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
    animation-duration: 1.5s;
}

.btn-secondary {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.2) 0%, 
        rgba(78, 205, 196, 0.2) 25%, 
        rgba(69, 183, 209, 0.2) 50%, 
        rgba(150, 206, 180, 0.2) 75%, 
        rgba(221, 160, 221, 0.2) 100%);
    background-size: 200% 100%;
    color: #ffffff;
    border: 2px solid rgba(255, 107, 107, 0.5);
    backdrop-filter: blur(10px);
    animation: buttonRainbow 4s ease-in-out infinite reverse;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, 
        rgba(78, 205, 196, 0.3) 0%, 
        rgba(69, 183, 209, 0.3) 25%, 
        rgba(150, 206, 180, 0.3) 50%, 
        rgba(221, 160, 221, 0.3) 75%, 
        rgba(255, 107, 107, 0.3) 100%);
    border-color: #4ECDC4;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(78, 205, 196, 0.4);
    animation-duration: 2s;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.header.scrolled {
    background: rgba(11, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 176, 66, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: #E0E6ED;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFC46B;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #F5B042;
    transition: 0.3s;
    border-radius: 3px;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-mobile-controls {
    display: none;
    align-items: center;
    gap: 12px;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    background: rgba(224, 230, 237, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 176, 66, 0.2);
    border-radius: 25px;
    padding: 4px;
    gap: 2px;
    transition: all 0.3s ease;
}

.lang-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: #B0BEC5;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.lang-btn:hover {
    color: #FFC46B;
    background: rgba(245, 176, 66, 0.1);
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .lang-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lang-btn:active {
        background: rgba(245, 176, 66, 0.15);
        transform: scale(0.95);
    }
}

.lang-btn.active {
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    color: #0b0e14;
}

/* Mobile navigation layout */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .nav-logo {
        flex: 1;
    }
    
    .nav-actions {
        display: none !important;
    }
    
    .nav-mobile-controls {
        display: flex !important;
        align-items: center;
        gap: 12px;
        z-index: 1002;
    }
    
    .nav-mobile-controls .language-toggle {
        padding: 2px;
        border-radius: 15px;
        background: rgba(224, 230, 237, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(245, 176, 66, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nav-mobile-controls .lang-btn {
        padding: 5px 10px;
        font-size: 11px;
        min-width: 30px;
        border-radius: 12px;
    }
    
    .nav-mobile-controls .lang-btn.active {
        background: rgba(245, 176, 66, 0.25);
        color: #FFC46B;
        box-shadow: 0 2px 8px rgba(245, 176, 66, 0.4);
    }
    
    .nav-toggle {
        position: relative !important;
        z-index: 1002;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 176, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 196, 107, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0b0e14 0%, #121826 50%, #1a1f2e 100%);
    overflow: hidden;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(245, 176, 66, 0.1) 0%, transparent 50%),
        linear-gradient(rgba(11, 14, 20, 0.3), rgba(18, 24, 38, 0.5));
    z-index: 2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    animation: fadeInBackground 2s ease-in-out 0.5s forwards;
}

@keyframes fadeInBackground {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    padding-top: 80px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    background: linear-gradient(135deg, 
        #FF6B6B 0%, 
        #4ECDC4 14.28%, 
        #45B7D1 28.57%, 
        #96CEB4 42.86%, 
        #FFEAA7 57.14%, 
        #DDA0DD 71.43%, 
        #FF6B6B 85.71%, 
        #F5B042 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-shadow: 0 0 40px rgba(245, 176, 66, 0.3);
    animation: colorShift 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #B0BEC5;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(245, 176, 66, 0.3));
    animation: heroFadeIn 1.5s ease-out forwards, heroFloat 6s ease-in-out infinite 1.5s, heroGlow 3s ease-in-out infinite alternate 2s;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
}

/* Remove the separate hero-character-img class since we're using img tag */

.hero-img:hover {
    transform: translateY(-10px) rotateY(5deg) scale(1.05);
    filter: drop-shadow(0 30px 60px rgba(245, 176, 66, 0.5));
}

@keyframes heroFloat {
    0%, 100% { 
        transform: translateY(0px) rotateY(0deg);
    }
    25% { 
        transform: translateY(-15px) rotateY(2deg);
    }
    50% { 
        transform: translateY(-25px) rotateY(0deg);
    }
    75% { 
        transform: translateY(-15px) rotateY(-2deg);
    }
}

@keyframes heroGlow {
    0% { 
        filter: drop-shadow(0 20px 40px rgba(245, 176, 66, 0.3)) brightness(1);
    }
    100% { 
        filter: drop-shadow(0 25px 50px rgba(245, 176, 66, 0.4)) brightness(1.1);
    }
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: drop-shadow(0 10px 20px rgba(245, 176, 66, 0.1)) brightness(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 20px 40px rgba(245, 176, 66, 0.3)) brightness(1);
    }
}

/* Stars Canvas */
.stars-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(26, 31, 46, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    background: linear-gradient(135deg, 
        #FF6B6B 0%, 
        #4ECDC4 16.66%, 
        #45B7D1 33.33%, 
        #96CEB4 50%, 
        #FFEAA7 66.66%, 
        #DDA0DD 83.33%, 
        #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorShift 2.5s ease-in-out infinite alternate;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 4px;
    background: linear-gradient(90deg, 
        #FF6B6B 0%, 
        #4ECDC4 16.66%, 
        #45B7D1 33.33%, 
        #96CEB4 50%, 
        #FFEAA7 66.66%, 
        #DDA0DD 83.33%, 
        #FF6B6B 100%);
    border-radius: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 28px;
    color: #FFC46B;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: #B0BEC5;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(224, 230, 237, 0.05);
    border: 1px solid rgba(245, 176, 66, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(245, 176, 66, 0.3);
    box-shadow: 0 16px 40px rgba(245, 176, 66, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Characters Grid */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.character-card {
    background: rgba(224, 230, 237, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 176, 66, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.character-card:hover::before {
    transform: scaleX(1);
}

.character-card:hover {
    transform: translateY(-12px);
    border-color: rgba(245, 176, 66, 0.3);
    box-shadow: 0 20px 40px rgba(245, 176, 66, 0.15);
}

.character-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid rgba(245, 176, 66, 0.3);
    transition: all 0.3s ease;
    background-image: url('背景/5.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.character-avatar-2 {
    background-image: url('背景/名称未設定のデザイン (8).png');
}

.character-avatar-3 {
    background-image: url('背景/3 (2).png');
}

.character-avatar-4 {
    background-image: url('背景/名称未設定のデザイン (3).png');
}

.character-avatar-5 {
    background-image: url('背景/名称未設定のデザイン (5).png');
}

.character-avatar-6 {
    background-image: url('背景/1 (2).png');
}

.character-avatar-7 {
    background-image: url('背景/名称未設定のデザイン (7).png');
}

.character-card:hover .character-avatar {
    border-color: #F5B042;
    box-shadow: 0 0 30px rgba(245, 176, 66, 0.3);
}

.character-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character-name {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, 
        #FF6B6B 0%, 
        #4ECDC4 14.28%, 
        #45B7D1 28.57%, 
        #96CEB4 42.86%, 
        #FFEAA7 57.14%, 
        #DDA0DD 71.43%, 
        #FF6B6B 85.71%, 
        #F5B042 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 8px;
    animation: colorShift 3s ease-in-out infinite alternate;
}

@keyframes colorShift {
    0% {
        background: linear-gradient(45deg, 
            #FF6B6B 0%, 
            #4ECDC4 14.28%, 
            #45B7D1 28.57%, 
            #96CEB4 42.86%, 
            #FFEAA7 57.14%, 
            #DDA0DD 71.43%, 
            #FF6B6B 85.71%, 
            #F5B042 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    50% {
        background: linear-gradient(45deg, 
            #F5B042 0%, 
            #FF6B6B 14.28%, 
            #4ECDC4 28.57%, 
            #45B7D1 42.86%, 
            #96CEB4 57.14%, 
            #FFEAA7 71.43%, 
            #DDA0DD 85.71%, 
            #FF6B6B 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    100% {
        background: linear-gradient(45deg, 
            #DDA0DD 0%, 
            #FFEAA7 14.28%, 
            #96CEB4 28.57%, 
            #45B7D1 42.86%, 
            #4ECDC4 57.14%, 
            #FF6B6B 71.43%, 
            #F5B042 85.71%, 
            #DDA0DD 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.character-reading {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #B0BEC5;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.character-attribute {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 176, 66, 0.2) 0%, rgba(255, 196, 107, 0.2) 100%);
    color: #FFC46B;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(245, 176, 66, 0.3);
}

.character-quote {
    font-style: italic;
    color: #B0BEC5;
    margin-bottom: 16px;
    font-size: 14px;
}

.character-description {
    color: #E0E6ED;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.character-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.stat-label {
    font-size: 14px;
    color: #B0BEC5;
    min-width: 60px;
}

.stat-bar {
    flex: 1;
    height: 6px;
    background: rgba(224, 230, 237, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #FF6B6B 0%, 
        #4ECDC4 16.66%, 
        #45B7D1 33.33%, 
        #96CEB4 50%, 
        #FFEAA7 66.66%, 
        #DDA0DD 83.33%, 
        #FF6B6B 100%);
    border-radius: 3px;
    transition: width 0.8s ease;
    animation: barShimmer 2s ease-in-out infinite alternate;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

@keyframes barShimmer {
    0% {
        background: linear-gradient(90deg, 
            #FF6B6B 0%, 
            #4ECDC4 16.66%, 
            #45B7D1 33.33%, 
            #96CEB4 50%, 
            #FFEAA7 66.66%, 
            #DDA0DD 83.33%, 
            #FF6B6B 100%);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    50% {
        background: linear-gradient(90deg, 
            #4ECDC4 0%, 
            #45B7D1 16.66%, 
            #96CEB4 33.33%, 
            #FFEAA7 50%, 
            #DDA0DD 66.66%, 
            #FF6B6B 83.33%, 
            #4ECDC4 100%);
        box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
    }
    100% {
        background: linear-gradient(90deg, 
            #DDA0DD 0%, 
            #FF6B6B 16.66%, 
            #4ECDC4 33.33%, 
            #45B7D1 50%, 
            #96CEB4 66.66%, 
            #FFEAA7 83.33%, 
            #DDA0DD 100%);
        box-shadow: 0 2px 8px rgba(221, 160, 221, 0.3);
    }
}

/* Collection Section */
.collection-card {
    background: rgba(224, 230, 237, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 176, 66, 0.1);
    border-radius: 24px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.collection-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #F5B042;
}

.collection-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 24px;
    border: 2px solid rgba(255, 107, 107, 0.5);
    border-radius: 50px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, 
        #FF6B6B 0%, 
        #4ECDC4 14.28%, 
        #45B7D1 28.57%, 
        #96CEB4 42.86%, 
        #FFEAA7 57.14%, 
        #DDA0DD 71.43%, 
        #FF6B6B 85.71%, 
        #F5B042 100%);
    background-size: 200% 100%;
    backdrop-filter: blur(10px);
    animation: buttonRainbow 3s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.collection-link:hover {
    background: linear-gradient(135deg, 
        #4ECDC4 0%, 
        #45B7D1 20%, 
        #96CEB4 40%, 
        #FFEAA7 60%, 
        #DDA0DD 80%, 
        #FF6B6B 100%);
    border-color: #4ECDC4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.4);
    animation-duration: 1.5s;
}

/* Magic Eden Embed Styles */
.magic-eden-embed {
    margin: 40px 0;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(11, 14, 20, 0.95) 0%, 
        rgba(18, 24, 38, 0.95) 100%);
    border-radius: 16px;
    padding: 4px;
    background: linear-gradient(45deg, 
        #FF6B6B 0%, 
        #4ECDC4 25%, 
        #45B7D1 50%, 
        #F5B042 75%, 
        #FF6B6B 100%) border-box;
    border: 4px solid transparent;
    animation: borderRotate 4s linear infinite;
    box-shadow: 0 12px 40px rgba(245, 176, 66, 0.3);
}

.magic-eden-embed iframe {
    width: 100%;
    height: 1200px;
    border: none;
    border-radius: 12px;
    background: white;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

@keyframes borderRotate {
    0% {
        background: linear-gradient(45deg, 
            #FF6B6B 0%, 
            #4ECDC4 25%, 
            #45B7D1 50%, 
            #F5B042 75%, 
            #FF6B6B 100%) border-box;
    }
    25% {
        background: linear-gradient(45deg, 
            #4ECDC4 0%, 
            #45B7D1 25%, 
            #F5B042 50%, 
            #FF6B6B 75%, 
            #4ECDC4 100%) border-box;
    }
    50% {
        background: linear-gradient(45deg, 
            #45B7D1 0%, 
            #F5B042 25%, 
            #FF6B6B 50%, 
            #4ECDC4 75%, 
            #45B7D1 100%) border-box;
    }
    75% {
        background: linear-gradient(45deg, 
            #F5B042 0%, 
            #FF6B6B 25%, 
            #4ECDC4 50%, 
            #45B7D1 75%, 
            #F5B042 100%) border-box;
    }
    100% {
        background: linear-gradient(45deg, 
            #FF6B6B 0%, 
            #4ECDC4 25%, 
            #45B7D1 50%, 
            #F5B042 75%, 
            #FF6B6B 100%) border-box;
    }
}

.collection-preview {
    background: rgba(11, 14, 20, 0.6);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(245, 176, 66, 0.1);
}

.collection-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.collection-item {
    background: rgba(224, 230, 237, 0.05);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(245, 176, 66, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.collection-item:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 176, 66, 0.3);
    box-shadow: 0 12px 32px rgba(245, 176, 66, 0.1);
}

.nft-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.nft-info h4 {
    color: #E0E6ED;
    font-size: 16px;
    margin-bottom: 4px;
}

.nft-info p {
    color: #F5B042;
    font-weight: 600;
    font-size: 14px;
}

/* Benefits Section */
.benefits-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.benefit-btn {
    padding: 12px 24px;
    border: 2px solid rgba(245, 176, 66, 0.3);
    background: rgba(224, 230, 237, 0.05);
    color: #E0E6ED;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.benefit-btn:hover {
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    color: #0b0e14;
    border-color: #F5B042;
    transform: translateY(-2px);
}

.benefit-btn.active {
    background: rgba(224, 230, 237, 0.05);
    color: #E0E6ED;
    border-color: rgba(245, 176, 66, 0.3);
}

.benefit-btn.active:hover {
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    color: #0b0e14;
    border-color: #F5B042;
    transform: translateY(-2px);
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 350px));
    gap: 32px;
    justify-content: center;
}

.benefit-card {
    background: rgba(224, 230, 237, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 176, 66, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-card:first-child {
    background-image: url('背景/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-card:nth-child(2) {
    background-image: url('背景/3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-card:nth-child(3) {
    background-image: url('背景/2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.community-card:first-child {
    background-image: url('背景/名称未設定のデザイン (13).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.community-card:nth-child(2) {
    background-image: url('背景/名称未設定のデザイン (14).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.community-card:nth-child(3) {
    background-image: url('背景/名称未設定のデザイン (15).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 176, 66, 0.3);
    box-shadow: 0 16px 40px rgba(245, 176, 66, 0.15);
}

.benefit-icon {
    display: none;
}

.benefit-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Custom Benefit Icons */
.supply-icon,
.gods-icon,
.art-icon,
.limited-icon,
.community-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(245, 176, 66, 0.2) 0%, 
        rgba(255, 196, 107, 0.2) 100%);
    border: 2px solid rgba(245, 176, 66, 0.3);
    transition: all 0.3s ease;
}

.supply-icon {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.2) 0%, 
        rgba(255, 196, 107, 0.2) 100%);
    border-color: rgba(255, 107, 107, 0.3);
    color: #FF6B6B;
    font-size: 18px;
}

.gods-icon {
    background: linear-gradient(135deg, 
        rgba(78, 205, 196, 0.2) 0%, 
        rgba(69, 183, 209, 0.2) 100%);
    border-color: rgba(78, 205, 196, 0.3);
    color: #4ECDC4;
}

.art-icon {
    background: linear-gradient(135deg, 
        rgba(150, 206, 180, 0.2) 0%, 
        rgba(255, 234, 167, 0.2) 100%);
    border-color: rgba(150, 206, 180, 0.3);
    color: #96CEB4;
}

.limited-icon {
    background: linear-gradient(135deg, 
        rgba(221, 160, 221, 0.2) 0%, 
        rgba(245, 176, 66, 0.2) 100%);
    border-color: rgba(221, 160, 221, 0.3);
    color: #DDA0DD;
}

.community-icon {
    background: linear-gradient(135deg, 
        rgba(245, 176, 66, 0.2) 0%, 
        rgba(255, 107, 107, 0.2) 100%);
    border-color: rgba(245, 176, 66, 0.3);
    color: #F5B042;
}

.benefit-card:hover .supply-icon,
.benefit-card:hover .gods-icon,
.benefit-card:hover .art-icon,
.benefit-card:hover .limited-icon,
.benefit-card:hover .community-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(245, 176, 66, 0.3);
}

/* Text Icon Styles */
.collection-info-icon,
.features-icon,
.community-text-icon {
    width: auto;
    height: auto;
    min-height: 80px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(245, 176, 66, 0.15) 0%, 
        rgba(255, 196, 107, 0.15) 100%);
    border: 2px solid rgba(245, 176, 66, 0.3);
    transition: all 0.3s ease;
}

.collection-info-icon {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.15) 0%, 
        rgba(78, 205, 196, 0.15) 100%);
    border-color: rgba(255, 107, 107, 0.3);
}

.features-icon {
    background: linear-gradient(135deg, 
        rgba(150, 206, 180, 0.15) 0%, 
        rgba(221, 160, 221, 0.15) 100%);
    border-color: rgba(150, 206, 180, 0.3);
}

.community-text-icon {
    background: linear-gradient(135deg, 
        rgba(245, 176, 66, 0.15) 0%, 
        rgba(255, 107, 107, 0.15) 100%);
    border-color: rgba(245, 176, 66, 0.3);
}

.text-icon {
    display: none;
}

.benefit-card:hover .collection-info-icon,
.benefit-card:hover .features-icon,
.benefit-card:hover .community-text-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 176, 66, 0.3);
}

.benefit-card .benefit-center-image {
    display: none;
}

.benefit-card .benefit-text-content {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    text-align: center;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-card h3 {
    color: #FFD700;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 3s ease-in-out infinite;
}

.benefit-card p {
    color: #ffffff;
    line-height: 1.4;
    font-size: 13px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

/* Community Section */
.community-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.community-card {
    background: rgba(224, 230, 237, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 176, 66, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.community-card:hover::before {
    transform: scaleX(1);
}

.community-card:hover {
    transform: translateY(-12px);
    border-color: rgba(245, 176, 66, 0.3);
    box-shadow: 0 20px 40px rgba(245, 176, 66, 0.15);
}

.community-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 176, 66, 0.1);
    border: 3px solid rgba(245, 176, 66, 0.3);
    color: #F5B042;
}

.community-card h3 {
    color: #00FF7F;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.5);
}

.community-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 16px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.community-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 25%, #45B7D1 50%, #96CEB4 75%, #FFEAA7 100%);
    background-size: 300% 100%;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: buttonRainbow 3s ease-in-out infinite;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 107, 0.3);
}

.community-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 176, 66, 0.4);
}

@keyframes rainbowShine {
    0%, 100% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
}

@keyframes buttonRainbow {
    0%, 100% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
}

@keyframes brightShine {
    0%, 100% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
}

/* Team Section */
.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background-image: url('背景/名称未設定のデザイン (19).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 176, 66, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 176, 66, 0.3);
    box-shadow: 0 16px 40px rgba(245, 176, 66, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(245, 176, 66, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    border-color: #F5B042;
    box-shadow: 0 0 30px rgba(245, 176, 66, 0.3);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    flex: 1;
}

.team-name {
    color: #F5B042;
    font-size: 22px;
    margin-bottom: 4px;
}

.team-role {
    color: #B0BEC5;
    font-size: 14px;
    margin-bottom: 12px;
}

.team-quote {
    color: #E0E6ED;
    font-style: italic;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.5;
}

.team-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: auto;
    height: 36px;
    min-width: 120px;
    border-radius: 18px;
    background: rgba(245, 176, 66, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5B042;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 176, 66, 0.3);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(245, 176, 66, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 176, 66, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(11, 14, 20, 0.9) 0%, rgba(18, 24, 38, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(245, 176, 66, 0.1);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #F5B042 0%, #FFC46B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.footer-copyright {
    color: #B0BEC5;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-link {
    color: #B0BEC5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFC46B;
}

.footer-bottom {
    padding-top: 20px;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(245, 176, 66, 0.2);
    margin-bottom: 20px;
}

.footer-legal {
    text-align: center;
    color: #78909C;
    font-size: 12px;
}

.footer-legal a {
    color: #78909C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #F5B042;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .characters-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .team-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(11, 14, 20, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(245, 176, 66, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    
    .section {
        padding: 80px 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }
    
    .characters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .character-card {
        padding: 24px;
    }
    
    .collection-card {
        padding: 24px;
    }
    
    .collection-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .magic-eden-embed {
        margin: 20px 0;
        padding: 2px;
    }
    
    .magic-eden-embed iframe {
        height: 800px;
    }
    
    .collection-items {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .benefits-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .benefit-btn {
        width: 250px;
        text-align: center;
    }
    
    .benefit-cards,
    .community-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .characters-grid {
        grid-template-columns: 1fr;
    }
    
    .character-card {
        padding: 20px;
    }
    
    .character-avatar {
        width: 150px;
        height: 150px;
    }
    
    .collection-items {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefit-btn {
        width: 200px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Manifest placeholders */
.gallery-img,
.character-img,
.benefit-img,
.nft-image,
.team-img {
    background: linear-gradient(135deg, rgba(245, 176, 66, 0.1) 0%, rgba(255, 196, 107, 0.05) 100%);
    border: 1px dashed rgba(245, 176, 66, 0.3);
}

/* SVG placeholder styling */
.hero-img::before,
.gallery-img::before,
.character-img::before,
.benefit-img::before,
.nft-image::before,
.team-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5B042' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='9' cy='9' r='2'/%3E%3Cpath d='m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.3;
}

/* Dark overlay for better readability */
.hero {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(245, 176, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 196, 107, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0b0e14 0%, #121826 50%, #1a1f2e 100%);
}

/* Additional glassmorphism effects */
.character-card,
.benefit-card,
.community-card,
.team-card,
.collection-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 176, 66, 0.1);
    box-shadow: 0 8px 32px rgba(11, 14, 20, 0.4);
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}