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

body {
    font-family: 'Press Start 2P', monospace;
    background-image: url('All in website backdrop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: #f0f0f0;
    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: #2563eb;
    border-bottom: 4px solid #1e40af;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    margin: 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: #2563eb;
    border: 3px solid #1e40af;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    transition: none;
    box-shadow: 4px 4px 0px #1e40af;
}

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

.secondary-btn {
    padding: 15px 30px;
    background: #ffffff;
    border: 3px solid #2563eb;
    color: #2563eb;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    transition: none;
    box-shadow: 4px 4px 0px #2563eb;
}

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

/* About Section */
.about {
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    margin: 20px;
}

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

.section-title {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px #1e40af;
    background: #2563eb;
    padding: 15px;
}

.about-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    padding: 30px;
}

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

/* Tokenomics Section */
.tokenomics {
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    margin: 20px;
}

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

.tokenomics-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    padding: 20px;
    text-align: center;
    transition: none;
}

.tokenomics-card:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translate(2px, 2px);
}

.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.4);
    margin: 20px;
}

.economics-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    padding: 30px;
}

.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: #2563eb;
    border-top: 4px solid #1e40af;
    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: #ffffff;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(30, 64, 175, 0.8);
    padding: 10px;
    border: 2px solid #1e40af;
}

/* 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;
}
