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

:root {
    --primary-gold: #D4AF37;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
    --card-bg: #1a1f3a;
    --text-light: #e8e8e8;
    --text-muted: #a0a0b5;
    --accent-blue: #4169E1;
    --success-green: #2ecc71;
    --warning-red: #e74c3c;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: 50px;
    max-height: 50px;
    max-width: 50px;
    object-fit: contain;
    opacity: 0.95;
    mix-blend-mode: screen;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
    display: block;
}

.logo:hover .logo-img {
    opacity: 1;
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.6))
            drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
    transform: scale(1.05);
}

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

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

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

.buy-btn {
    background: var(--gradient-gold);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: var(--darker-bg);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    display: inline-block;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.pray-btn {
    background: var(--gradient-gold);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: var(--darker-bg);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pray-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.halo-effect {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(65, 105, 225, 0.15) 30%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
    filter: blur(40px);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateX(-50%) scale(1);
    }
    50% { 
        opacity: 0.9; 
        transform: translateX(-50%) scale(1.15);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(65, 105, 225, 0.3) 40%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
    filter: blur(20px);
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-logo-img {
    width: 250px;
    height: 250px;
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    opacity: 0.9;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.1)
            drop-shadow(0 0 30px rgba(212, 175, 55, 0.6)) 
            drop-shadow(0 0 60px rgba(212, 175, 55, 0.4))
            drop-shadow(0 0 90px rgba(65, 105, 225, 0.3));
    transition: all 0.3s ease;
}

.hero-logo:hover .hero-logo-img {
    opacity: 1;
    filter: brightness(1.3) contrast(1.2)
            drop-shadow(0 0 40px rgba(212, 175, 55, 0.8)) 
            drop-shadow(0 0 80px rgba(212, 175, 55, 0.5))
            drop-shadow(0 0 120px rgba(65, 105, 225, 0.4));
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buy-section {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    color: var(--darker-bg);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.btn-hero-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.buy-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.buy-text {
    letter-spacing: 0.5px;
}

.buy-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.trading-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trading-links-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.trading-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trading-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.trading-link-btn:hover {
    background: rgba(26, 31, 58, 0.9);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.link-icon {
    font-size: 1.1rem;
}

.feast-day {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
}

.feast-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feast-date {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.feast-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.prayer-box {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
}

.prayer-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.prayer-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.prayer-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.prayer-ending {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--darker-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section Title */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Iconography Section */
.iconography {
    padding: 6rem 2rem;
    background: var(--darker-bg);
}

.icon-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.attributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.attribute-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.attribute-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.attribute-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.attribute-card h3 {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Legend Section */
.legend {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.legend-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legend-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-muted);
}

.legend-text p {
    margin-bottom: 1.5rem;
}

.first-letter::first-letter {
    font-size: 3.5rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.saying-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    position: relative;
    height: fit-content;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.quote-mark {
    font-size: 5rem;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: Georgia, serif;
}

.saying-text {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.saying-author {
    text-align: right;
    color: var(--primary-gold);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Patronage Section */
.patronage {
    padding: 6rem 2rem;
    background: var(--darker-bg);
}

.devotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.devotion-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.devotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.devotion-card:hover::before {
    transform: scaleX(1);
}

.devotion-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.devotion-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.devotion-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.devotion-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Miracles Section */
.miracles {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.miracles-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.miracles-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-gold) 0%, transparent 100%);
}

.miracle-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.miracle-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
}

.miracle-content {
    flex: 1;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.miracle-content:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.miracle-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.miracle-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.miracle-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.miracle-tag.miracle {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
}

.miracle-tag.cautionary {
    background: rgba(231, 76, 60, 0.2);
    color: var(--warning-red);
}

/* Honor Section */
.honor {
    padding: 6rem 2rem;
    background: var(--darker-bg);
}

.honor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.honor-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.honor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.honor-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.honor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.honor-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--card-bg);
    margin: 10% auto;
    padding: 3rem;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

.modal-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-gold);
}

.modal-prayer {
    text-align: center;
}

.prayer-collection {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
    margin-bottom: 2rem;
}

.prayer-item {
    background: rgba(26, 31, 58, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.prayer-item h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.prayer-full {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    text-align: left;
    margin-bottom: 1rem;
}

.prayer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
}

.footer-bottom p:first-child {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.9rem;
}

/* Additional Page Styles */

/* Page Hero (for all other pages) */
.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: var(--gradient-dark);
    position: relative;
}

.page-title {
    font-size: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
}

/* Whitepaper Styles */
.whitepaper-content {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.wp-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.wp-section h2 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.wp-section h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.wp-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.token-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.token-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.token-value {
    font-size: 2rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin: 1rem 0 0.5rem;
}

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

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-list li strong {
    color: var(--primary-gold);
}

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

.roadmap-phase {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.phase-number {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.roadmap-phase h3 {
    color: var(--text-light);
    margin: 1rem 0;
}

.roadmap-phase ul {
    list-style: none;
    padding: 0;
}

.roadmap-phase li {
    padding: 0.5rem 0;
    color: var(--text-muted);
}

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

.use-case {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.use-case h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
}

/* FAQ Styles */
.faq-content {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.faq-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.faq-category {
    padding: 0.75rem 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.faq-category:hover,
.faq-category.active {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    border-color: var(--primary-gold);
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-cta {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-cta h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Community Styles */
.community-stats {
    padding: 4rem 2rem;
    background: var(--darker-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    font-weight: 700;
}

.stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.social-platforms {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.platform-card:hover,
.platform-card.highlight {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.platform-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.platform-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.platform-stats {
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.community-events {
    padding: 4rem 2rem;
    background: var(--darker-bg);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.event-date {
    text-align: center;
    min-width: 70px;
}

.event-month {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
}

.event-day {
    font-size: 2rem;
    font-family: 'Cinzel', serif;
    color: var(--text-light);
    font-weight: 700;
}

.event-content h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.event-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    border-radius: 15px;
    font-size: 0.85rem;
}

.community-guidelines {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.guidelines-content {
    max-width: 900px;
    margin: 0 auto;
}

.guideline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.guideline-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guideline-text h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.guideline-text p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-section {
    padding: 4rem 2rem;
    background: var(--darker-bg);
}

.contact-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FFD700;
}

/* Contract Page Styles */
.warning-banner {
    padding: 2rem;
    background: rgba(231, 76, 60, 0.1);
    border-top: 3px solid var(--warning-red);
    border-bottom: 3px solid var(--warning-red);
}

.warning-content {
    display: flex;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.warning-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.warning-text h3 {
    color: var(--warning-red);
    margin-bottom: 0.5rem;
}

.warning-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.contract-info {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.contract-card-main {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
}

.contract-card-main h2 {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 2rem;
}

.contract-address-box {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contract-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    word-break: break-all;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contract-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contract-notice {
    background: rgba(65, 105, 225, 0.1);
    border-left: 4px solid var(--accent-blue);
    padding: 1.5rem;
    border-radius: 10px;
}

.contract-notice p {
    color: var(--text-muted);
    line-height: 1.8;
}

.security-features {
    padding: 4rem 2rem;
    background: var(--darker-bg);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.security-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.security-card h3 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.security-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-ready {
    background: rgba(46, 204, 113, 0.2);
    color: var(--success-green);
}

.status-badge.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.status-badge.status-progress {
    background: rgba(65, 105, 225, 0.2);
    color: var(--accent-blue);
}

.status-badge.status-miracle {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    font-weight: 700;
}

.satire-disclaimer {
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid var(--warning-red);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.satire-disclaimer p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.satire-footer {
    background: rgba(255, 193, 7, 0.1);
    border: 2px dashed #FFC107;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.satire-footer p {
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

.miracle-card {
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.miracle-card::before {
    content: '🤡';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.miracle-card:hover {
    opacity: 1;
}

.audit-section {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.audit-status {
    max-width: 900px;
    margin: 0 auto;
}

.audit-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 2rem;
}

.audit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.audit-card h3 {
    color: var(--text-light);
}

.audit-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.audit-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.audit-checklist li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.audit-eta {
    color: var(--primary-gold);
    font-weight: 600;
}

.audit-placeholder {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.audit-placeholder h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.audit-placeholder p {
    color: var(--text-muted);
}

.verification-guide {
    padding: 4rem 2rem;
    background: var(--darker-bg);
}

.guide-steps {
    max-width: 900px;
    margin: 0 auto;
}

.guide-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.useful-tools {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.tool-card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tool-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tool-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tool-link:hover {
    color: #FFD700;
}

.trade-guide {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tools-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.tool-modal-item {
    background: rgba(26, 31, 58, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.tool-modal-item h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-family: 'Cinzel', serif;
}

.tool-modal-item p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tool-modal-item .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
}

.liquidity-info {
    padding: 4rem 2rem;
    background: var(--darker-bg);
}

.liquidity-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.liquidity-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.liquidity-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.liquidity-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: var(--text-light);
    font-weight: 600;
}

.liquidity-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.liquidity-explanation {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.liquidity-explanation h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.liquidity-explanation p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contract-cta {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
}

.cta-box h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .buy-btn, .pray-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-hero-buy {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .legend-content {
        grid-template-columns: 1fr;
    }

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

    .attributes-grid,
    .devotions-grid,
    .honor-cards {
        grid-template-columns: 1fr;
    }

    .miracles-timeline::before {
        left: 20px;
    }

    .miracle-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

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

    .liquidity-content {
        grid-template-columns: 1fr;
    }

    .warning-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo-img {
        width: 180px !important;
        height: 180px !important;
        max-width: 180px !important;
        max-height: 180px !important;
    }

    .logo-img {
        height: 40px !important;
        width: 40px !important;
        max-height: 40px !important;
        max-width: 40px !important;
    }

    .nav-buttons {
        flex-direction: row;
        gap: 0.5rem;
    }

    .buy-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .pray-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .btn-hero-buy {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
        gap: 0.5rem;
    }

    .buy-icon {
        font-size: 1.2rem;
    }

    .buy-note {
        font-size: 0.85rem;
        text-align: center;
    }

    .trading-buttons {
        gap: 0.5rem;
    }

    .trading-link-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    .prayer-text {
        font-size: 1.1rem;
    }

    .feast-date {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .page-title {
        font-size: 2rem;
    }

    .guide-step {
        flex-direction: column;
        text-align: center;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }
}

