:root {
    --blue-light: #0223ca;
    --blue-dark: #f5f6f9;
    --black: #151515;
    --white: #ffffff;
    --accent: #7ee787;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto Mono', monospace;
    background-color: var(--black);
    color: var(--white);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 2px solid var(--blue-light);
    box-sizing: border-box;
    position: sticky;
    top: 0;
    background-color: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 40px;
    box-shadow: 0 5px 20px rgba(2, 35, 202, 0.2);
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--blue-light);
    margin-right: 15px;
    transition: var(--transition);
}

.header-logo:hover {
    transform: rotate(10deg);
    box-shadow: 0 0 15px var(--blue-light);
}

.header-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.header-title {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 5px var(--blue-light);
}

.header-right {
    display: flex;
    gap: 25px;
}

.header-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    text-shadow: 0 0 3px var(--blue-light);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.header-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue-light);
    transition: var(--transition);
}

.header-right a:hover {
    color: var(--blue-light);
}

.header-right a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    width: 100%;
    background: linear-gradient(135deg, rgba(2, 35, 202, 0.1) 0%, rgba(21, 21, 21, 1) 100%);
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 80px 20px;
    box-sizing: border-box;
    min-height: 80vh;
}

.left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.pengu-circle {
    width: 400px;
    height: 400px;
    border: 5px solid var(--blue-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px var(--blue-light);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pengu-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 35, 202, 0.3) 0%, rgba(2, 35, 202, 0) 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pengu-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    animation: pulse 3s infinite ease-in-out;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--blue-light);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 25px var(--blue-light);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--blue-light);
    }
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.headline {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 0 10px var(--blue-light);
    text-align: left;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #a0b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-headline {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: left;
    color: #e0e0e0;
}

.buttons-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--blue-light);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--blue-light);
    color: var(--black);
    box-shadow: 0 0 15px var(--blue-light);
}

.btn-primary:hover {
    background-color: var(--black);
    color: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--blue-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--blue-light);
}

.btn-secondary:hover {
    background-color: var(--blue-light);
    color: var(--black);
    transform: translateY(-3px);
}

.contract-box {
    background-color: rgba(21, 21, 21, 0.8);
    border: 2px solid var(--blue-light);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0 15px var(--blue-light);
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(5px);
}

.contract-label {
    display: flex;
    align-items: center;
    font-size: 1em;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.contract-label .contract-icon {
    margin-right: 10px;
}

.contract-details {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.contract-address {
    background-color: rgba(245, 246, 249, 0.1);
    color: var(--white);
    padding: 12px 15px;
    font-size: 1em;
    word-break: break-all;
    flex-grow: 1;
    border-radius: 5px;
    font-family: 'Roboto Mono', monospace;
}

.copy-btn {
    background-color: var(--blue-light);
    color: var(--black);
    padding: 12px 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.copy-btn:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(2, 35, 202, 0.5);
}

.copy-btn.copied {
    background-color: var(--accent);
    color: var(--black);
}

/* Section Styles */
.section-container {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 80px;
}

.section-container.light {
    background-color: var(--white);
    color: var(--black);
}

.section-container.dark {
    background-color: var(--black);
    color: var(--white);
}

.section-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-container.light .section-title {
    color: var(--black);
}

.section-container.dark .section-title {
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--blue-light);
    border-radius: 2px;
}

.section-text {
    flex: 1;
    padding: 20px;
    font-size: 1.1em;
    line-height: 1.7;
    text-align: left;
}

.section-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.section-image-frame {
    border: 5px solid var(--blue-light);
    padding: 10px;
    box-shadow: 0 0 20px var(--blue-light);
    border-radius: 10px;
    transition: var(--transition);
    overflow: hidden;
}

.section-image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--blue-light);
}

.section-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.section-image-frame:hover .section-image {
    transform: scale(1.05);
}

.section-container.light .section-image-frame {
    border-color: var(--blue-light);
    box-shadow: 0 0 15px rgba(2, 35, 202, 0.5);
}

.tokenomics-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    font-size: 1.1em;
    text-align: left;
}

.tokenomics-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.tokenomics-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-light);
    font-weight: bold;
}

.tokenomics-list strong {
    color: var(--blue-light);
}

/* Buy Guide Section */
.buy-guide {
    width: 100%;
    background: linear-gradient(135deg, rgba(2, 35, 202, 0.05) 0%, rgba(21, 21, 21, 1) 100%);
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.aby-container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(2, 6, 23, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.aby-header {
    text-align: center;
    margin-bottom: 30px;
}

.aby-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #062a2a, #0b254a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 20px;
    box-shadow: 0 6px 25px rgba(7, 20, 40, 0.6);
}

.aby-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.accent-text {
    color: var(--accent);
}

.aby-lead {
    color: #b0b0b0;
    font-size: 14px;
}

.aby-step {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.aby-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(126, 231, 135, 0.2);
}

.aby-step-number {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #0b1230;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(126, 231, 135, 0.4);
}

.aby-step-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: white;
}

.aby-desc {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.aby-desc a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.aby-desc a:hover {
    text-decoration: underline;
}

.aby-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aby-btn {
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    cursor: pointer;
}

.aby-btn:hover {
    background: rgba(126, 231, 135, 0.15);
    transform: translateY(-2px);
}

.aby-note {
    margin-top: 12px;
    font-size: 12px;
    color: #888;
}

.aby-footer {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer-section {
    width: 100%;
    padding: 40px 20px;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    border-top: 2px solid var(--blue-light);
}

.footer-section p {
    margin: 10px 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.footer-disclaimer {
    font-size: 0.8em;
    color: #aaa;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .headline {
        font-size: 3em;
    }
    
    .pengu-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .header-right {
        gap: 15px;
    }

    .header-right a {
        margin: 0;
    }

    .container,
    .section-content {
        flex-direction: column;
        padding: 40px 15px;
    }

    .left-section,
    .right-section,
    .section-text,
    .section-image-container {
        padding: 10px;
        text-align: center;
        width: 100%;
    }

    .right-section {
        align-items: center;
    }

    .pengu-circle {
        width: 280px;
        height: 280px;
    }

    .headline {
        font-size: 2.2em;
        text-align: center;
    }

    .sub-headline {
        font-size: 1.1em;
        text-align: center;
    }

    .contract-box {
        align-items: center;
    }

    .contract-details {
        flex-direction: column;
        gap: 15px;
    }

    .buttons-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section-image-container {
        order: -1;
    }

    .section-title {
        font-size: 1.8em;
    }
    
    .aby-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 1.5em;
    }
    
    .headline {
        font-size: 1.8em;
    }
    
    .pengu-circle {
        width: 220px;
        height: 220px;
    }
    
    .section-title {
        font-size: 1.5em;
    }
    
    .aby-step {
        padding: 20px 15px;
    }
    
    .aby-actions {
        flex-direction: column;
    }
    
    .aby-btn {
        width: 100%;
        text-align: center;
    }
}