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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-color: #00d9ff;
    --accent-secondary: #ff6b6b;
    --border-color: #333333;
    --loading-color: #00d9ff;
    --glow-color: rgba(0, 217, 255, 0.3);
}

body {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--glow-color));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px var(--glow-color));
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--accent-color);
    background: var(--bg-tertiary);
    box-shadow: 0 0 10px var(--glow-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section - Loading Screen */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: radial-gradient(circle at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.03) 2px,
            rgba(0, 217, 255, 0.03) 4px
        );
    pointer-events: none;
}

.loading-screen {
    text-align: center;
    z-index: 1;
    position: relative;
}

.loading-content {
    max-width: 600px;
    margin: 0 auto;
}

.loading-icon {
    position: relative;
    margin-bottom: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--loading-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

.gear {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    animation: rotate 3s linear infinite;
    filter: drop-shadow(0 0 10px var(--glow-color));
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.gear svg {
    width: 100%;
    height: 100%;
}

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

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

.loading-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--glow-color);
    letter-spacing: 0.2em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.loading-bar-container {
    margin: 2rem 0;
    position: relative;
}

.loading-bar {
    width: 100%;
    height: 30px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loading-progress {
    height: 100%;
    width: 99%;
    background: linear-gradient(90deg, var(--accent-color), #00b8e6);
    border-radius: 15px;
    position: relative;
    animation: loading-glow 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--glow-color);
    transition: width 0.3s ease-out;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes loading-glow {
    0%, 100% { 
        box-shadow: 0 0 20px var(--glow-color), 0 0 30px rgba(0, 217, 255, 0.3);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 40px var(--glow-color), 0 0 60px rgba(0, 217, 255, 0.5), 0 0 80px rgba(0, 217, 255, 0.2);
        opacity: 0.95;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loading-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.loading-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
}

.loading-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.token-info {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 0 30px var(--glow-color);
}

.token-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--glow-color);
}

.token-status {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 20px var(--glow-color);
}

.btn-primary:hover {
    background: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow-color);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--glow-color);
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--glow-color));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

/* Community Section */
.community-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

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

.social-btn {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--border-color);
    font-family: 'Courier New', monospace;
}

.social-btn:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--glow-color);
    transform: translateY(-2px);
}

/* Manifesto Section */
.manifesto-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.manifesto-content {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-quote {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    font-style: italic;
    margin: 2rem 0;
    text-shadow: 0 0 20px var(--glow-color);
    line-height: 1.4;
}

/* System Logs Section */
.logs-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.terminal {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 30px var(--glow-color);
}

.terminal-header {
    background: var(--bg-tertiary);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.terminal-dot:nth-child(1) {
    background: #ff5f56;
}

.terminal-dot:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dot:nth-child(3) {
    background: #27c93f;
}

.terminal-title {
    margin-left: auto;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    max-height: 500px;
    overflow-y: auto;
    background: #000;
    color: #00ff00;
}

.log-line {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.log-time {
    color: #888;
    margin-right: 1rem;
}

.log-text {
    color: #00ff00;
}

.log-warning {
    color: #ffbd2e;
}

.log-error {
    color: #ff5f56;
}

.log-accent {
    color: var(--accent-color);
    font-weight: 700;
}

.log-line.typing {
    display: flex;
    align-items: center;
}

.cursor {
    color: var(--accent-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Counter Section */
.counter-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.counter-card {
    background: var(--bg-primary);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 40px var(--glow-color);
}

.counter-card h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.counter-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

#daysCounter {
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 30px var(--glow-color);
}

.counter-label {
    font-size: 2rem;
    color: var(--text-secondary);
}

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

/* Contest Section */
.contest-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    text-align: center;
}

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

.prize-pool {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.prize-pool h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.prize-item {
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.prize-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--glow-color);
    transform: translateY(-3px);
}

.contest-rules {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.contest-rules h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.rules-list {
    list-style: none;
    counter-reset: rule-counter;
    padding: 0;
}

.rules-list li {
    counter-increment: rule-counter;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.8;
    color: var(--text-secondary);
}

.rules-list li::before {
    content: counter(rule-counter);
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.rules-list a {
    color: var(--accent-color);
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.rules-list a:hover {
    text-decoration: underline;
}

.contest-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.contest-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Quotes Section */
.quotes-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.quotes-container {
    max-width: 900px;
    margin: 2rem auto 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.quote-nav {
    background: var(--bg-tertiary);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    line-height: 1;
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.quote-nav:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--glow-color);
    transform: scale(1.1);
}

.quote-nav:active {
    transform: scale(0.95);
}

.quote-card {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(20px);
    flex: 1;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-card.active {
    opacity: 1;
    transform: translateX(0);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px var(--glow-color);
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 0 15px var(--glow-color);
}

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

/* Interactive Section */
.interactive-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    text-align: center;
}

.btn-interactive {
    background: var(--accent-color);
    color: var(--bg-primary);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 30px var(--glow-color);
    margin: 2rem 0;
}

.btn-interactive:hover {
    background: #00b8e6;
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--glow-color);
}

.btn-interactive:active {
    transform: translateY(0);
}

.interactive-result {
    min-height: 60px;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* Status Section */
.status-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.status-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px var(--glow-color);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.status-header h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--glow-color);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.status-item:last-child {
    border-bottom: none;
}

.status-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.status-value {
    color: var(--accent-color);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

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

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

.footer-logo-img {
    width: 80px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--glow-color));
}

.footer-logo p {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: var(--bg-tertiary);
    color: var(--accent-color);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.sidebar-link:hover {
    border-color: var(--accent-color);
    background: var(--bg-tertiary);
    color: var(--accent-color);
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

    .token-name {
        font-size: 2rem;
    }

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

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .manifesto-quote {
        font-size: 1.3rem;
    }

    .terminal-body {
        font-size: 0.8rem;
        padding: 1rem;
    }

    #daysCounter {
        font-size: 3.5rem;
    }

    .counter-label {
        font-size: 1.5rem;
    }

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

    .quote-text {
        font-size: 1.2rem;
    }

    .btn-interactive {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .quotes-container {
        gap: 1rem;
    }

    .quote-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .quote-card {
        padding: 2rem 1rem;
        min-height: 150px;
    }
}
