/* CSS Variables */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffc107;
    --bg-dark: #0a0a0a;
    --bg-light: #1a1a1a;
    --bg-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #888888;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --shadow-light: 0 4px 20px rgba(255, 107, 53, 0.1);
    --shadow-medium: 0 8px 40px rgba(255, 107, 53, 0.2);
    --shadow-heavy: 0 16px 60px rgba(255, 107, 53, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    animation: float 6s ease-in-out infinite;
}

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

.clifford-img {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
}

.video-container {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.clifford-video {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.audio-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.audio-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.audio-toggle.unmuted {
    background: rgba(255, 107, 53, 0.8);
}

.audio-toggle.unmuted:hover {
    background: rgba(255, 107, 53, 1);
}

.launch-note {
    color: var(--accent-color);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-coin {
    position: absolute;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.coin-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    left: -10%;
    animation-delay: 0.7s;
}

.coin-3 {
    bottom: 10%;
    right: -10%;
    animation-delay: 1.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.about-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Tokenomics Section */
.tokenomics {
    padding: 6rem 0;
    background: var(--bg-dark);
}

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

.chart-container {
    max-width: 400px;
    margin: 0 auto;
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.token-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.token-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.token-label h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.token-label p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Presale Section */
.presale {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.presale-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.presale-lock-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lock-content {
    text-align: center;
    max-width: 500px;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.lock-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.lock-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.lock-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.access-code-form {
    margin-bottom: 1.5rem;
}

.access-code-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius);
    background: var(--bg-dark);
    color: var(--text-primary);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.access-code-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.access-code-input::placeholder {
    text-transform: none;
    letter-spacing: normal;
}

.error-message {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.contact-info {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.presale-content {
    display: flex;
    justify-content: center;
}

.presale-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.presale-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.presale-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--bg-dark);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.progress-text {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.presale-info {
    margin-bottom: 2rem;
}

.presale-stat {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.presale-stat:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    color: var(--primary-color);
    font-weight: 600;
}

.countdown-timer {
    text-align: center;
    margin-bottom: 2rem;
}

.countdown-timer h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timer-item {
    background: var(--bg-dark);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 70px;
}

.timer-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.timer-item label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.purchase-form {
    margin-bottom: 2rem;
}

.presale-message {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.presale-message p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    background: var(--bg-dark);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.conversion-display {
    text-align: center;
    margin: 1rem 0;
    color: var(--text-secondary);
}

.conversion-display strong {
    color: var(--primary-color);
}

.accepted-currencies {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.accepted-currencies p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.currency-text {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.currency-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.currency-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.wallet-address-display {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 107, 53, 0.3);
    animation: fadeInUp 0.5s ease-out;
}

.wallet-info label {
    display: block;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.wallet-address-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 1.5rem;
}

.wallet-address {
    flex: 1;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    font-weight: 600;
}

.btn-copy {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-copy:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-light);
}

.btn-copy:active {
    transform: scale(0.95);
}

.wallet-instructions {
    background: rgba(255, 107, 53, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.wallet-instructions p {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.wallet-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.wallet-instructions ol li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.wallet-instructions ol li:last-child {
    margin-bottom: 0;
}

.wallet-instructions strong {
    color: var(--primary-color);
}

.security-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--border-radius);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.security-notice i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.security-notice p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.security-notice strong {
    color: #4CAF50;
}

/* Staking Section */
.staking {
    padding: 6rem 0;
    background: var(--bg-dark);
}

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

.staking-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.staking-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.staking-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.apy {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: var(--bg-light);
}

.roadmap-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-marker {
    width: 20px;
    height: 20px;
    background: var(--bg-card);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.roadmap-item.completed .roadmap-marker {
    background: var(--primary-color);
}

.roadmap-item.active .roadmap-marker {
    background: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.roadmap-content-item {
    flex: 1;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.roadmap-content-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.roadmap-content-item h3 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.roadmap-content-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.roadmap-content-item ul {
    list-style: none;
}

.roadmap-content-item li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

/* Social Media Section */
.social-media {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.telegram:hover {
    background: #0088cc;
}

.social-link.discord:hover {
    background: #7289da;
}

/* Footer */
.footer {
    background: var(--bg-light);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-muted);
}

.footer-disclaimer {
    margin-top: 1rem;
    text-align: center;
}

.footer-disclaimer strong {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .roadmap-content::before {
        left: 30px;
    }
    
    .roadmap-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .roadmap-marker {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .timer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .timer-item {
        min-width: 60px;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .presale-card {
        padding: 2rem 1.5rem;
    }
    
    .clifford-img {
        width: 200px;
        height: 200px;
    }
    
    .floating-card {
        padding: 1.5rem;
    }
    
    .clifford-video {
        width: 280px;
        height: 350px;
    }
}

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

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }