/* Global Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette from logo - Orange/Flame theme */
    --primary-orange: #FF6B35;
    --secondary-orange: #F7931E;
    --dark-bg: #0f1419;
    --darker-bg: #0a0d11;
    --card-bg: rgba(15, 20, 25, 0.85);
    --card-border: rgba(255, 107, 53, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #a8b3cf;
    --accent-glow: rgba(255, 107, 53, 0.4);

    /* Typography */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background-color: var(--darker-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Animated Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: particleMove 20s ease-in-out infinite;
}

@keyframes particleMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 50px) scale(0.9);
    }
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridScroll 30s linear infinite;
}

@keyframes gridScroll {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 13, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: 40px;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
}

/* Live Price Ticker */
.price-ticker {
    position: sticky;
    top: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    animation: slideDown 0.5s ease-out;
}

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

.ticker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: white;
}

.ticker-label {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.ticker-change {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.ticker-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.2);
}

.ticker-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
}

.ticker-info {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.ticker-info span {
    font-weight: 500;
}

.ticker-volume,
.ticker-updated {
    font-family: var(--font-secondary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    animation: float 6s ease-in-out infinite;
}

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

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

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), #FFA07A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Links Section */
.links-section {
    background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.02), transparent);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.link-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.link-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 30px var(--accent-glow);
    transform: translateY(-5px);
}

.card-header {
    margin-bottom: 1rem;
}

.card-header h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 0.3rem;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.address {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    word-break: break-all;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.card-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-orange);
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--primary-orange);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.warning-box svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.warning-box p {
    margin: 0;
    color: var(--text-secondary);
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tokenomics-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tokenomics-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 30px var(--accent-glow);
    transform: translateY(-5px);
}

.token-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tokenomics-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.tokenomics-card p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feature-card {
    grid-column: span 2;
}

/* Trade Section */
.trade-section {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.02), transparent);
}

.trade-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Giveaway Section */
.giveaway-section {
    background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.02));
}

.giveaway-header {
    text-align: center;
    margin-bottom: 2rem;
}

.giveaway-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-primary);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.giveaway-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.giveaway-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.giveaway-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.giveaway-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--primary-orange);
    border-radius: 6px;
}

.giveaway-note {
    color: var(--text-secondary);
    font-style: italic;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.02), transparent);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.optional {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Footer */
.footer {
    background: rgba(10, 13, 17, 0.95);
    border-top: 1px solid var(--card-border);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-disclaimer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 13, 17, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
    }

    /* Mobile Price Ticker */
    .price-ticker {
        top: 60px;
        padding: 10px 0;
    }

    .ticker-content {
        flex-direction: column;
        gap: 8px;
    }

    .ticker-label {
        font-size: 0.85rem;
    }

    .ticker-price {
        font-size: 1.3rem;
    }

    .ticker-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        font-size: 0.8rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        grid-column: span 1;
    }

    .trade-buttons {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.about-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    animation: float 6s ease-in-out infinite;
}

.about-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), #FFA07A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.02), transparent);
}

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

.mission-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.mission-content strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Why Now Section */
.why-now-section {
    padding: 80px 0;
}

.why-now-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-now-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.why-now-content strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Building Section */
.building-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.02), transparent);
}

.building-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.building-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.building-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 30px var(--accent-glow);
    transform: translateY(-5px);
}

.building-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.building-card h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.building-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.building-card strong {
    color: var(--text-primary);
}

/* Principles Section */
.principles-section {
    padding: 80px 0;
}

.principles-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.principle-item {
    display: flex;
    gap: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.principle-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.principle-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.principle-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
}

.principle-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.principle-content em {
    color: var(--text-primary);
    font-style: italic;
}

/* Stand For Section */
.stand-for-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.02));
}

.stand-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stand-for-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stand-for-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 30px var(--accent-glow);
    transform: translateY(-5px);
}

.stand-for-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.stand-for-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Don't Do Section */
.dont-do-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.02), transparent);
}

.dont-do-content {
    max-width: 800px;
    margin: 0 auto;
}

.dont-do-list {
    list-style: none;
    padding: 0;
}

.dont-do-list li {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dont-do-list li:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Getting Started Section */
.getting-started-section {
    padding: 80px 0;
}

.getting-started-content {
    max-width: 800px;
    margin: 0 auto;
}

.getting-started-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.getting-started-list li {
    counter-increment: step-counter;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    backdrop-filter: blur(10px);
    position: relative;
    padding-left: 5rem;
}

.getting-started-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.getting-started-list li strong {
    color: var(--primary-orange);
}

.getting-started-list li a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.inline-code {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-orange);
}

/* Responsibility Section */
.responsibility-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.05));
}

.responsibility-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.responsibility-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    background: white;
    color: var(--dark-bg);
}

.newsletter-form button {
    padding: 14px 32px;
    background: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--darker-bg);
    transform: translateY(-2px);
}

.newsletter-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.newsletter-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.newsletter-info a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.newsletter-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1.4rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .mission-content p,
    .why-now-content p {
        font-size: 1.1rem;
    }

    .principle-item {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .getting-started-list li {
        padding-left: 2rem;
    }

    .getting-started-list li::before {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 1rem;
    }
}
