/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/ninja1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    letter-spacing: 0.5px;
}

.container {
    min-height: 100vh;
    backdrop-filter: blur(8px);
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Image */
.header-image {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    overflow: hidden;
    transform: rotate(-2deg);
}

.header-image img {
    width: 256px;
    height: 256px;
    object-fit: contain;
    border-radius: 1.5rem;
    transition: transform 0.3s;
}

.header-image:hover img {
    transform: scale(1.05);
}

/* Title */
.title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-2deg);
}

/* Contract Address */
.contract-address {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
    transform: rotate(1deg);
}

.contract-address:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.contract-address p {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Main Content */
.main-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* About Section */
.about-section {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(-1deg);
}

.about-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.25rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn.github {
    background: linear-gradient(135deg, #2b3137 0%, #373e47 100%);
}

.btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #19608F 100%);
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Right Side Image */
.right-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.right-image a {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    transform: rotate(2deg);
    overflow: hidden;
}

.right-image a:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.02) rotate(2deg);
}

.right-image img {
    width: 256px;
    height: 256px;
    object-fit: contain;
    transition: all 0.3s;
    border-radius: 1.5rem;
}

.right-image img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Tokenomics Section */
.tokenomics-section {
    width: 100%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(1deg);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-1deg);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tokenomics-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    transform: rotate(-1deg);
}

.tokenomics-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px) rotate(-1deg);
}

.tokenomics-item h3 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomics-item p {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
}

.tokenomics-item.status {
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.3) 0%, rgba(46, 196, 182, 0.1) 100%);
    border-color: rgba(46, 196, 182, 0.3);
    transform: rotate(1deg);
}

.tokenomics-item.status p {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How to Buy Section */
.how-to-buy-section {
    width: 100%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(-1deg);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    transform: rotate(1deg);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px) rotate(1deg);
}

.step-number {
    background: linear-gradient(135deg, #1DA1F2 0%, #19608F 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    transform: rotate(-2deg);
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 1.2rem;
}

/* Socials Heading */
.socials-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-2deg);
}

/* Bottom Social Icons */
.bottom-socials {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.bottom-socials a {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    transform: rotate(-2deg);
    overflow: hidden;
}

.bottom-socials a:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05) rotate(-2deg);
}

.bottom-socials img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: all 0.3s;
}

.bottom-socials img:hover {
    opacity: 0.8;
    transform: scale(1.1);
}