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

body {
    font-family: 'Press Start 2P', monospace;
    background-image: url('Pheonix Background.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a0f0a;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Main Container - Full screen coverage */
.container {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    border-bottom: 4px solid #d97706;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-shadow: 2px 2px 0px #d97706;
}

.nav {
    display: flex;
    gap: 15px;
}

.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-icon-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.nav-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Twitter icon specific styling */
.nav-icon-link:first-child .nav-icon {
    color: #ffffff;
}

.nav-icon-link:first-child:hover .nav-icon {
    color: #1da1f2;
}

/* Image icons (PumpFun and DexScreener) styling */
.nav-icon-link:not(:first-child) .nav-icon {
    filter: brightness(0) invert(1);
}

.nav-icon-link:not(:first-child):hover .nav-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 60px 40px;
    margin: 60px 20px 20px 20px;
}

.hero-content {
    max-width: 600px;
    padding: 40px;
}

.hero-coin-image {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transition: none;
}

.hero-coin-image:hover {
    transform: none;
    filter: none;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    text-shadow: 3px 3px 0px #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 12px;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border: 2px solid #000000;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    border: 2px solid #d97706;
    color: #000000;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.4);
    transform: translateY(-2px);
}

.secondary-btn {
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #374151;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: #eab308;
    box-shadow: 0 6px 16px rgba(55, 65, 81, 0.4);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 40px;
    margin: 20px;
    border-radius: 20px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px #d97706;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.about-content {
    border-radius: 0;
    padding: 30px;
}

.about-content p {
    font-size: 10px;
    color: #ffffff;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Tokenomics Section */
.tokenomics {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tokenomics-card:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.tokenomics-label {
    font-size: 8px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomics-card:hover .tokenomics-label {
    color: #ffffff;
}

.tokenomics-value {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    text-shadow: 1px 1px 0px #ffffff;
}

.tokenomics-card:hover .tokenomics-value {
    color: #ffffff;
    text-shadow: 1px 1px 0px #1e40af;
}

/* Economics Section */
.economics {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.economics-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.economics-content p {
    font-size: 10px;
    color: #000000;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 15px auto;
}

.economics-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 30px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    border-top: 4px solid #d97706;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
    padding: 10px 15px;
    border: 3px solid #1e40af;
    border-radius: 0;
    background: #ffffff;
    transition: none;
    box-shadow: 3px 3px 0px #1e40af;
}

.social-link:hover {
    background: #1e40af;
    color: #ffffff;
    box-shadow: 1px 1px 0px #1e40af;
    transform: translate(2px, 2px);
}

.disclaimer p {
    font-size: 8px;
    color: #000000;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(234, 179, 8, 0.8);
    padding: 10px;
    border: 2px solid #d97706;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 15% auto;
    padding: 30px;
    border: 4px solid #2563eb;
    border-radius: 0;
    width: 400px;
    max-width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 6px 6px 0px #2563eb;
}

.close {
    color: #2563eb;
    float: right;
    font-size: 16px;
    font-weight: 400;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    background: #ffffff;
    border: 2px solid #2563eb;
    padding: 5px 8px;
    box-shadow: 2px 2px 0px #2563eb;
}

.close:hover {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 1px 1px 0px #2563eb;
    transform: translate(1px, 1px);
}

.modal-content h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px #1e40af;
    background: #2563eb;
    padding: 10px;
    border: 3px solid #1e40af;
    box-shadow: 3px 3px 0px #1e40af;
}

.ca-display {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

#contractAddress {
    flex: 1;
    padding: 10px;
    background: #ffffff;
    border: 3px solid #2563eb;
    border-radius: 0;
    color: #000000;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    box-shadow: 2px 2px 0px #2563eb;
}

.copy-btn {
    padding: 10px 15px;
    background: #2563eb;
    border: 3px solid #1e40af;
    color: #ffffff;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    transition: none;
    box-shadow: 3px 3px 0px #1e40af;
    font-family: inherit;
    font-size: 8px;
}

.copy-btn:hover {
    background: #1e40af;
    color: #ffffff;
    box-shadow: 1px 1px 0px #1e40af;
    transform: translate(2px, 2px);
}

.ca-note {
    color: #000000;
    font-size: 8px;
    font-style: normal;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border: 2px solid #2563eb;
}

/* Roadmap Section */
.roadmap {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.roadmap-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.roadmap-phase {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    border: 2px solid rgba(234, 179, 8, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.roadmap-phase:hover {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.3);
}

.roadmap-phase h4 {
    font-size: 12px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 1px 1px 0px #ffffff;
}

.roadmap-phase:hover h4 {
    color: #000000;
    text-shadow: 1px 1px 0px #d97706;
}

.roadmap-phase p {
    font-size: 9px;
    color: #000000;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-content {
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    transition: all 0.3s ease;
    border: 2px solid rgba(234, 179, 8, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 179, 8, 0.3);
}

.faq-item h4 {
    font-size: 11px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 1px 1px 0px #ffffff;
}

.faq-item:hover h4 {
    text-shadow: 1px 1px 0px #d97706;
}

.faq-item p {
    font-size: 9px;
    color: #000000;
    line-height: 1.6;
}

/* Community Section */
.community {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.community-content {
    margin-top: 30px;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(234, 179, 8, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.3);
}

.stat-number {
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 8px;
    text-shadow: 1px 1px 0px #ffffff;
}

.stat-item:hover .stat-number {
    text-shadow: 1px 1px 0px #d97706;
}

.stat-label {
    font-size: 8px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-message {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(234, 179, 8, 0.3);
}

.community-message p {
    font-size: 10px;
    color: #000000;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 15px auto;
}

.community-message p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .roadmap-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .roadmap-phase,
    .faq-item,
    .community-message {
        padding: 20px;
    }
}
