:root {
    --primary-color: #00cc3d;
    --primary-dark: #009e2f;
    --secondary-color: #00cc3d;
    --accent-color: #ff9900;
    --text-color: #ffffff;
    --light-text: #ecf0f1;
    --light-bg: #1a1a1a;
    --dark-bg: #0a0a0a;
    --border-color: #333333;
    --card-bg: #202020;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    animation: fadeIn 0.5s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li {
    margin-left: 0;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.header-buttons .btn {
    margin-left: 15px;
}

/* Button Standardization */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    min-width: 140px;
    height: 44px;
    gap: 8px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background: #00c3ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 171, 255, 0.3);
}

.secondary-btn {
    background: rgba(0, 171, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
    background: rgba(0, 171, 255, 0.2);
    transform: translateY(-2px);
}

.outline-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.outline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" fill="none" stroke="rgba(0, 204, 61, 0.05)" stroke-width="2"><circle cx="0" cy="0" r="30" /><circle cx="100" cy="0" r="20" /><circle cx="50" cy="50" r="40" /><circle cx="0" cy="100" r="10" /><circle cx="100" cy="100" r="35" /></svg>');
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 204, 61, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.hero-image img {
    max-width: 90%;
    filter: drop-shadow(0 0 10px rgba(0, 171, 255, 0.3));
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    opacity: 0.9;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #181818;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
    border: 1px solid #333;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:hover {
    border-color: var(--primary-color);
    background-color: #202020;
    box-shadow: 0 0 15px rgba(0, 204, 61, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Guide Section */
.guide {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.guide-tabs {
    background-color: #181818;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 15px 25px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-content {
    padding: 30px;
    background-color: #181818;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.3s;
}

.step:nth-child(4) {
    animation-delay: 0.4s;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #181818;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-color);
}

.step-content code {
    background-color: #2a2a2a;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(45deg, #0a0a0a, #181818, #0a0a0a);
    background-size: 200% 200%;
    animation: gradientBG 10s ease infinite;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 171, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta .btn {
    margin-top: 20px;
    background-color: white;
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: rgba(10, 10, 10, 0.95);
    color: var(--light-text);
    padding: 70px 0 30px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links h3, .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    color: white;
}

.telegram {
    background-color: #0088cc;
}

.telegram-group {
    background-color: #0088cc;
}

.twitter {
    background-color: #1da1f2;
}

.social-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
}

.token-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.buy-token {
    background-color: var(--accent-color);
    color: white;
}

.buy-nft {
    background-color: #9b59b6;
    color: white;
}

.buy-token:hover, .buy-nft:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    background-color: #0a0a0a;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 900px;
    margin: 15px auto 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Scrolling Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #0a0a0a;
        z-index: 1000;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 80px;
        width: 100%;
    }

    nav ul li {
        margin-left: 0;
        width: 100%;
    }

    nav ul li a {
        padding: 10px 15px;
        display: block;
        width: 100%;
        border-radius: 5px;
        color: var(--light-text);
    }
    
    nav ul li a:hover {
        background-color: rgba(0, 204, 61, 0.1);
    }
    
    nav ul li a.active {
        background-color: rgba(0, 204, 61, 0.2);
        color: var(--primary-color);
    }
    
    nav ul li a::after {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .header-buttons {
        display: none;
    }

    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .guide-tabs {
        border-radius: 8px;
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .workflow-line {
        left: 30px;
    }
    
    .workflow-item:nth-child(odd),
    .workflow-item:nth-child(even) {
        flex-direction: row;
        padding-right: 0;
        padding-left: 60px;
    }
    
    .workflow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 15px 0 0;
    }
    
    .pdf-preview {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 80px;
    }

    .features, .guide, .cta {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .social-buttons, .token-buttons {
        justify-content: center;
    }

    .code-sample {
        padding: 15px;
    }
    
    .code-sample code {
        font-size: 0.8rem;
    }
    
    .copy-btn {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 220px;
    }
}

/* iPad Compatibility */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Utilities */
.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-up {
    animation: fadeInUp 1s ease;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 15px;
}

.text-center {
    text-align: center;
}

/* Code Sample Section */
.sample-toml-section {
    margin-top: 60px;
}

.code-sample {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    margin-top: 30px;
}

.code-sample pre {
    overflow-x: auto;
    margin: 0;
    padding: 0;
}

.code-sample code {
    font-family: 'Courier New', Courier, monospace;
    color: #e5e7eb;
    line-height: 1.5;
    display: block;
    font-size: 0.9rem;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
}

.copy-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Dark theme for guide page */
.guide-content {
    background-color: #181818;
    color: var(--light-text);
}

.method-card {
    background-color: #202020;
    border: 1px solid #333;
}

.method-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 204, 61, 0.2);
}

/* Highlight effect for text */
.highlight {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 204, 61, 0.15);
    z-index: -1;
    transform: skewX(-5deg);
}

/* Glowing button effect */
.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 204, 61, 0.3), transparent);
    transform: rotate(45deg);
    animation: glow 3s linear infinite;
}

@keyframes glow {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* Rotating animation for logo */
.rotating-slow {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Particle animation in hero */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-particles 15s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 20s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 80%;
    width: 6px;
    height: 6px;
    animation-duration: 22s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    width: 4px;
    height: 4px;
    animation-duration: 18s;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 50%;
    width: 7px;
    height: 7px;
    animation-duration: 23s;
    animation-delay: 8s;
}

@keyframes float-particles {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.5;
    }
}

/* Additional dark theme enhancements */

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #0a0a0a;
}

body::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 6px;
    border: 3px solid #0a0a0a;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}

/* Neon-like hover effect for cards */
.feature-card:hover .feature-icon {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Enhanced CTA section */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 204, 61, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Section dividers */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 70px auto;
    width: 80%;
    max-width: 800px;
    opacity: 0.5;
}

/* Workflow Layout */
.workflow-container {
    margin-top: 50px;
    position: relative;
    padding: 30px 0;
}

.workflow-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
}

.workflow-items {
    position: relative;
    z-index: 1;
}

.workflow-item {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.workflow-item:nth-child(1) {
    --i: 1;
}

.workflow-item:nth-child(2) {
    --i: 2;
}

.workflow-item:nth-child(3) {
    --i: 3;
}

.workflow-item:nth-child(4) {
    --i: 4;
}

.workflow-item:nth-child(odd) {
    flex-direction: row;
    padding-right: 50%;
    padding-left: 0;
}

.workflow-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: 50%;
    padding-right: 0;
}

.workflow-icon {
    width: 60px;
    height: 60px;
    background-color: #181818;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.3);
    margin: 0 20px;
}

.workflow-content {
    background-color: #181818;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    flex: 1;
    transition: all 0.3s ease;
}

.workflow-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 204, 61, 0.2);
    transform: translateY(-5px);
}

.workflow-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.workflow-item:hover .workflow-icon {
    background-color: var(--primary-color);
    color: #0a0a0a;
}

/* PDF Viewer Section */
.pdf-section {
    padding: 80px 0;
    background-color: #181818;
}

.pdf-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.pdf-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pdf-preview {
    max-width: 100%;
    height: 400px;
    border: 1px solid #333;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .workflow-line {
        left: 30px;
    }
    
    .workflow-item:nth-child(odd),
    .workflow-item:nth-child(even) {
        flex-direction: row;
        padding-right: 0;
        padding-left: 60px;
    }
    
    .workflow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 15px 0 0;
    }
    
    .pdf-preview {
        height: 300px;
    }
}

/* Card and Section Standardization */
.workflow-content, .guide-tabs, .method-card, .doc-card, .about-card, .team-member {
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    overflow: hidden;
}

.workflow-content:hover, .method-card:hover, .doc-card:hover, .about-card:hover, .team-member:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 204, 61, 0.2);
}

/* Global element spacing */
section {
    padding: 100px 0;
}

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(0, 204, 61, 0.3);
}

.alert {
    background-color: rgba(255, 153, 0, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alert-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.alert-content {
    flex: 1;
}

.alert-content h4 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.alert-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.meme-tools-heading {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ff9900;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 153, 0, 0.7);
    font-family: 'Russo One', sans-serif;
    background: linear-gradient(to right, #ff9900, #ffb700, #ff9900);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.meme-tools-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff9900, transparent);
    border-radius: 50%;
}

.meme-tools-heading::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(8px);
    color: #ff9900;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .meme-tools-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .meme-tools-heading {
        font-size: 2rem;
    }
}

.tools-requirements-alert {
    background-color: rgba(255, 153, 0, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px;
    margin: 50px auto 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 900px;
}

.tools-requirements-alert .alert-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.tools-requirements-alert .alert-content {
    flex: 1;
}

.tools-requirements-alert h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.tools-requirements-alert ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.tools-requirements-alert ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.tools-requirements-alert ul li:before {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .tools-requirements-alert {
        flex-direction: column;
        padding: 20px;
    }
    
    .tools-requirements-alert .alert-icon {
        margin-bottom: 15px;
    }
}

.highlight-card {
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.highlight-card .card-icon {
    color: var(--accent-color);
}

.highlight-card:hover {
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.2);
    transform: translateY(-10px);
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-nav {
    color: #ff9900 !important;
    font-weight: bold !important;
    font-family: 'Exo 2', sans-serif;
    position: relative;
    overflow: hidden;
}

.highlight-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.2), transparent);
    animation: nav-shine 2s infinite;
}

@keyframes nav-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.highlight-nav::after {
    background-color: #ff9900 !important;
}

.red-highlight {
    color: #ff0000;
    font-weight: bold;
}

.custom-domain-guide {
    background-color: rgba(255, 153, 0, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin: 30px 0;
}

.custom-domain-guide h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-domain-guide p {
    margin-bottom: 15px;
    font-weight: 500;
}

.custom-domain-steps {
    padding-left: 20px;
}

.custom-domain-steps li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.custom-domain-steps code {
    background-color: #2a2a2a;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}

.section-subheader {
    text-align: center;
    margin: 25px 0;
}

.section-subheader h3 {
    font-size: 1.2rem;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

@media (max-width: 576px) {
    .custom-domain-guide {
        padding: 15px;
    }
    
    .custom-domain-guide h3 {
        font-size: 1.1rem;
    }
}

.fee-alert {
    background-color: rgba(255, 153, 0, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 900px;
}

.fee-alert .alert-icon {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.fee-alert .alert-content {
    flex: 1;
}

.fee-alert h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.fee-alert ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.fee-alert ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.fee-alert ul li:before {
    content: "\f3d1";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .fee-alert {
        flex-direction: column;
        padding: 15px;
    }
    
    .fee-alert .alert-icon {
        margin-bottom: 10px;
    }
}

.nft-banner {
    background: linear-gradient(135deg, rgba(0, 171, 255, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nft-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nft-banner-content h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
}

.nft-banner-content p {
    color: var(--light-text);
    margin: 0;
    opacity: 0.9;
}

.nft-banner-content .btn {
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nft-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nft-banner-content .btn {
        width: 100%;
    }
} 