/* CSS Variables */
:root {
    --primary-orange: #ff6b35;
    --glow-orange: #ff8c42;
    --dark-red: #8b0000;
    --dark-gold: #b8860b;
    --darker-bg: #0a0a0a;
    --dark-bg: #1a1a1a;
    --medium-bg: #2a2a2a;
    --text-primary: #ffffff;
    --text-muted: #cccccc;
    --text-dark: #666666;
    --light-blue: #4fc3f7;
    --purple: #9c27b0;
    --green: #4caf50;
    --border-color: #333333;
    --glow-shadow: 0 0 20px var(--glow-orange);
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: var(--darker-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Layout Structure */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    border-right: 2px solid var(--border-color);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
}

.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

/* Navigation Styles */
.nav-header {
    margin-bottom: 3rem;
}

.nav-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: var(--primary-orange);
    text-align: center;
    text-shadow: var(--text-shadow);
    margin-bottom: 1rem;
}

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

.nav-links li {
    margin-bottom: 1rem;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--glow-orange));
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    transform: translateX(5px);
}

.nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-orange);
}

/* Section Styles */
section {
    padding: 4rem 3rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow);
}

.section-description,
.gallery-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.solana-logo {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 3rem;
    color: var(--light-blue);
    line-height: 1.2;
    text-shadow: var(--text-shadow);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--primary-orange);
    text-shadow: var(--text-shadow);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.minting-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-locked {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lock-icon {
    font-size: 1rem;
}

.verification-badge {
    display: inline-block;
}

.twitter-verified {
    background: var(--green);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-orange), var(--glow-orange));
    color: var(--text-primary);
    box-shadow: var(--glow-shadow);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-orange);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

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

.featured-nft {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--glow-shadow);
}

.featured-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.nft-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
}

.nft-stats {
    color: var(--text-primary);
}

.stat-item {
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
}

.stat-detail {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--glow-orange));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.background-nfts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.bg-nft {
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
}

.bg-nft:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-nft:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bg-nft:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Gallery Section */
.gallery-section {
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}

.gallery-scroll {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 70vh;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) var(--border-color);
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.gallery-scroll::-webkit-scrollbar {
    width: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--glow-orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nft-card {
    background: var(--medium-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-orange), var(--glow-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nft-card:hover::before {
    opacity: 0.1;
}

.nft-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--glow-shadow);
}

.nft-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.nft-image.loaded {
    opacity: 1;
}

.nft-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.nft-info {
    text-align: center;
}

.nft-number {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.nft-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.nft-rarity {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nft-rarity.common {
    background: var(--text-dark);
    color: var(--text-primary);
}

.nft-rarity.rare {
    background: var(--purple);
    color: var(--text-primary);
}

.nft-rarity.legendary {
    background: linear-gradient(45deg, var(--dark-gold), var(--primary-orange));
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

.scroll-indicator {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mint Section */
.mint-section {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.mint-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mint-bg-nfts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.mint-bg-nft {
    position: absolute;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    filter: blur(2px);
    animation: float 8s ease-in-out infinite;
}

.mint-bg-nft:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.mint-bg-nft:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.mint-bg-nft:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.mint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.mint-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mint-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mint-preview {
    text-align: center;
    position: relative;
}

.preview-nft {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.preview-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--primary-orange);
    box-shadow: var(--glow-shadow);
}

.preview-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-orange), var(--glow-orange));
    border-radius: 25px;
    opacity: 0.3;
    filter: blur(15px);
    animation: pulse 2s ease-in-out infinite;
}

.preview-text h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    text-shadow: var(--text-shadow);
}

.preview-text p {
    color: var(--text-muted);
    font-size: 1rem;
}

.mint-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    color: var(--text-primary);
}

.mint-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mint-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mint-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mint-stat:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mint-widget {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 20px;
    border: 2px solid var(--primary-orange);
    backdrop-filter: blur(10px);
}

.mint-status {
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    border: 1px solid var(--green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 600;
}

.mint-note {
    text-align: center;
    margin-top: 1rem;
}

.mint-note p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background: var(--dark-bg);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--medium-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Glitch Animation */
.glitch-text {
    position: relative;
    animation: glitch 2s infinite;
}

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

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: var(--primary-orange);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: var(--dark-red);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

/* Sacrifice Altar Styles */
.sacrifice-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sacrifice-option {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sacrifice-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-orange), var(--glow-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.sacrifice-option:hover::before {
    opacity: 0.1;
}

.sacrifice-option:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.sacrifice-option h4 {
    color: var(--primary-orange);
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--primary-orange);
}

.sacrifice-option p {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.ritual-details,
.lottery-details,
.public-details,
.ascension-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ritual-details span,
.lottery-details span,
.public-details span,
.ascension-details span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

.sacrifice-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-btn {
    background: linear-gradient(45deg, #ff0000, #ff6b35);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.main-btn:hover {
    background: linear-gradient(45deg, #ff6b35, #ff0000);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

.lottery-btn {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: white;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.lottery-btn:hover {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.public-btn {
    background: linear-gradient(45deg, #4a90e2, #ff6b35);
    color: white;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}

.public-btn:hover {
    background: linear-gradient(45deg, #ff6b35, #4a90e2);
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.5);
    transform: translateY(-2px);
}

.ascension-btn {
    background: linear-gradient(45deg, #8a2be2, #ff6b35);
    color: white;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.ascension-btn:hover {
    background: linear-gradient(45deg, #ff6b35, #8a2be2);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.5);
    transform: translateY(-2px);
}

/* Wallet Connection Modal */
.wallet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.wallet-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-content {
    background: var(--dark-bg);
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.wallet-content h3 {
    color: var(--primary-orange);
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-orange);
}

.wallet-content p {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.wallet-option {
    padding: 1rem;
    background: var(--medium-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.wallet-option:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.wallet-option img {
    width: 24px;
    height: 24px;
}

.wallet-option span {
    color: var(--text-primary);
    font-weight: 600;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Ritual Status Indicators */
.ritual-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.status-item {
    text-align: center;
}

.status-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .side-nav {
        width: 250px;
        padding: 1.5rem 1rem;
    }
    
    .main-content {
        margin-left: 250px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .featured-image {
        width: 250px;
        height: 250px;
    }
    
    .mint-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .side-nav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 100%;
        max-width: 300px;
    }
    
    .side-nav.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-scroll {
        max-height: 60vh;
    }
    
    .mint-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mint-left {
        gap: 2rem;
    }
    
    .preview-image {
        width: 250px;
        height: 250px;
    }
    
    .mint-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .mint-info {
        gap: 1rem;
    }
    
    .mint-stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .mint-widget {
        padding: 1.5rem;
    }

    .sacrifice-options {
        gap: 1rem;
    }
    
    .sacrifice-option {
        padding: 1rem;
    }
    
    .sacrifice-option h4 {
        font-size: 1rem;
    }
    
    .sacrifice-option p {
        font-size: 0.8rem;
    }
    
    .ritual-details span,
    .lottery-details span,
    .public-details span,
    .ascension-details span {
        font-size: 0.7rem;
    }
    
    .sacrifice-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .wallet-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .wallet-content h3 {
        font-size: 1.2rem;
    }
    
    .ritual-status {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: var(--primary-orange);
    border: none;
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
} 

/* Unique NFT Minting Mechanism */
.mint-mechanism {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mint-mechanism::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-orange), var(--glow-orange));
    opacity: 0.05;
    z-index: -1;
}

.mechanism-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mechanism-header h3 {
    color: var(--primary-orange);
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--primary-orange);
}

.mechanism-header p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

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

.mechanism-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mechanism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-orange), var(--glow-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mechanism-card:hover::before {
    opacity: 0.1;
}

.mechanism-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
}

.mechanism-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.mechanism-card h4 {
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mechanism-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.reward-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.burn-reward .reward-badge {
    background: linear-gradient(45deg, #ff0000, #ff6b35);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.lottery-reward .reward-badge {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.public-reward .reward-badge {
    background: linear-gradient(45deg, #4a90e2, #ff6b35);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.ascension-reward .reward-badge {
    background: linear-gradient(45deg, #8a2be2, #ff6b35);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.mechanism-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.mechanism-stats .stat-item {
    text-align: center;
}

.mechanism-stats .stat-value {
    display: block;
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px var(--primary-orange);
}

.mechanism-stats .stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive for Minting Mechanism */
@media (max-width: 768px) {
    .mint-mechanism {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .mechanism-header h3 {
        font-size: 1.2rem;
    }
    
    .mechanism-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .mechanism-card {
        padding: 1rem;
    }
    
    .mechanism-icon {
        font-size: 2rem;
    }
    
    .mechanism-card h4 {
        font-size: 1rem;
    }
    
    .mechanism-card p {
        font-size: 0.8rem;
    }
    
    .mechanism-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mechanism-stats .stat-value {
        font-size: 1.2rem;
    }
} 