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

html,
body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Main Layout Container */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hero Image Section */
.hero-section {
    width: 100vw;
    height: 100vh;
    background-image: url('img/kin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    flex-shrink: 0;
    position: relative;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.nav-link:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

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

/* Content Section */
.content-section {
    width: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: white;
    flex: 1;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

p {
    line-height: 1.6;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Section Layout (excluding hero and lore-section) */
.content-section section:not(.lore-section) {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Modern section backgrounds with alternating styles */
.content-section section:nth-child(odd):not(.lore-section) {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.content-section section:nth-child(even):not(.lore-section) {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 215, 0, 0.01) 100%);
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Subtle animated border effect */
.content-section section:not(.lore-section)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-section section:not(.lore-section):hover::before {
    opacity: 1;
}

.lore-section {
    text-align: center;
    font-style: italic;
    margin: 6rem 0;

}


/* Tokenomics Section */
.tokenomics-section {
    position: relative;
    background: rgba(255, 215, 0, 0.05) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tokenomics-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Contract Address Row */
.contract-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-row label {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: bold;
}

/* Info Row (Ticker, Tax, LP) */
.info-row {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.info-item {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.info-item label {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: bold;
}

.contract-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    color: white;
    word-break: break-all;
    user-select: all;
    flex: 1;
}

.copy-btn-small {
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: white;
    padding: 0.25rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn-small:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: scale(1.05);
}

.ticker,
.tax,
.lp {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
}

.copy-feedback {
    position: absolute;
    top: -2rem;
    right: 0;
    background: #4CAF50;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.copy-feedback.show {
    opacity: 1;
}

/* How to Buy Section */
.buy-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    counter-reset: step-counter;
    list-style: none;
}

.buy-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.5;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.buy-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.125rem;
    background: #FFD700;
    color: black;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

/* Social Section */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.2s ease;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.social-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.disclaimer-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-footer p {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        max-width: 900px;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .content-container {
        padding: 1rem;
        gap: 3rem;
    }

    .content-section section:not(.lore-section) {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .info-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contract-display {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {

    p {
        font-size: 1rem;
    }

    .hero-section {
        height: 60vh;
    }

    .content-container {
        margin: 1rem 0;
        padding: 1rem;
        gap: 2rem;
    }

    .content-section section:not(.lore-section) {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .contract-address {
        font-size: 0.625rem;
    }

    .buy-steps li {
        font-size: 0.875rem;
        padding-left: 2rem;
        line-height: 1.4;
    }

    .buy-steps li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.875rem;
        top: 0;
    }

    .contract-row {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
        align-items: stretch;
    }

    .contract-row label {
        text-align: center;
        font-size: 1rem;
    }

    .contract-display {
        justify-content: space-between;
        align-items: center;
    }

    .contract-address {
        font-size: 0.75rem;
        text-align: center;
        flex: 1;
    }

    .info-item {
        padding: 0.5rem;
    }
}