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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 16px;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2F135D 0%, #1a0b2e 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(50, 200, 233, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #32C8E9 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.3rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.nav-menu a {
    color: #32C8E9;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid #32C8E9;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    background: #32C8E9;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 200, 233, 0.3);
}

/* Sections */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    color: #32C8E9;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #32C8E9, #2F135D);
    border-radius: 2px;
}

.section h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 40px 0 25px 0;
    font-weight: 600;
}

.section h4 {
    font-size: 1.3rem;
    color: #32C8E9;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

/* Key Findings Grid */
.key-findings {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    border: 1px solid #333;
}

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

.finding-card {
    text-align: center;
    padding: 30px;
    background: rgba(50, 200, 233, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(50, 200, 233, 0.3);
    transition: transform 0.3s ease;
}

.finding-card:hover {
    transform: translateY(-5px);
}

.finding-number {
    font-size: 3rem;
    font-weight: 800;
    color: #32C8E9;
    margin-bottom: 10px;
}

.finding-description {
    font-size: 1rem;
    color: #c0c0c0;
    font-weight: 400;
}

/* Critical Insights */
.critical-insights {
    background: linear-gradient(135deg, #2F135D 0%, #1a0b2e 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    border: 1px solid #4a2574;
}

.insights-list {
    list-style: none;
    margin-top: 25px;
}

.insights-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    line-height: 1.7;
}

.insights-list li:last-child {
    border-bottom: none;
}

.insights-list li strong {
    color: #32C8E9;
    font-weight: 600;
}

/* Hook Analysis */
.hook-types {
    margin-bottom: 50px;
}

.hook-type {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid #32C8E9;
}

.hook-example {
    background: rgba(47, 19, 93, 0.3);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(50, 200, 233, 0.2);
}

.example-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.example-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    background: #32C8E9;
    color: #0a0a0a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hook-analysis {
    margin-top: 15px;
    color: #c0c0c0;
    line-height: 1.6;
}

.hook-analysis strong {
    color: #32C8E9;
}

/* Framework Steps */
.framework-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    border: 1px solid #333;
}

.step-number {
    background: #32C8E9;
    color: #0a0a0a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 1.1rem;
}

.step-content p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Length Data */
.length-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.length-stat {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.length-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #32C8E9;
    margin-bottom: 10px;
}

.length-desc {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.length-detail {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* Engagement Drop-off Chart */
.dropoff-chart {
    margin-top: 30px;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 200px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #2F135D, #32C8E9);
    border-radius: 5px 5px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 10px;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    filter: brightness(1.2);
}

.bar-label {
    position: absolute;
    bottom: -35px;
    font-size: 0.8rem;
    color: #a0a0a0;
    text-align: center;
    width: 100%;
}

.bar-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.chart-insight {
    margin-top: 25px;
    padding: 20px;
    background: rgba(50, 200, 233, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(50, 200, 233, 0.3);
    color: #e0e0e0;
    line-height: 1.6;
}

/* Curiosity Loops */
.curiosity-loops {
    margin-top: 50px;
}

.loop-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.loop-example {
    background: linear-gradient(135deg, #2F135D 0%, #1a0b2e 100%);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(50, 200, 233, 0.3);
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #32C8E9;
}

/* Signal Grid */
.signal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.signal-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.signal-card:hover {
    transform: translateY(-5px);
}

.signal-card h4 {
    color: #32C8E9;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.signal-ratio {
    background: rgba(50, 200, 233, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    color: #32C8E9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.signal-card ul {
    list-style: none;
}

.signal-card li {
    padding: 8px 0;
    color: #c0c0c0;
    position: relative;
    padding-left: 20px;
}

.signal-card li:before {
    content: '•';
    color: #32C8E9;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Technique List */
.technique-list {
    margin-top: 30px;
}

.technique {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #32C8E9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.technique h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
}

.technique p {
    color: #c0c0c0;
    font-style: italic;
    margin: 5px 0 0 0;
    flex-grow: 1;
}

.technique-result {
    background: #32C8E9;
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Timing Grid */
.timing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.timing-card {
    background: linear-gradient(135deg, #2F135D 0%, #1a0b2e 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(50, 200, 233, 0.3);
}

.timing-card h4 {
    color: #32C8E9;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.best-time {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.timing-card p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Visual Stats */
.visual-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.visual-stat {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #32C8E9;
    margin-bottom: 10px;
}

.stat-desc {
    color: #c0c0c0;
    font-size: 1rem;
}

/* Placement Guide */
.placement-guide {
    margin-top: 30px;
}

.placement-item {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #32C8E9;
}

.placement-example {
    background: rgba(50, 200, 233, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    color: #32C8E9;
    font-style: italic;
    font-size: 0.95rem;
}

/* Formatting Rules */
.formatting-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.rule {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
}

.rule h4 {
    color: #32C8E9;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.rule p {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Monetization Patterns */
.pattern-analysis {
    margin-top: 30px;
}

.pattern {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.pattern-structure {
    margin: 20px 0;
}

.sandwich-layer {
    background: rgba(200, 200, 200, 0.1);
    padding: 15px 20px;
    margin-bottom: 5px;
    border-radius: 8px;
    font-weight: 500;
    border-left: 3px solid #666;
}

.sandwich-layer.product {
    background: rgba(50, 200, 233, 0.2);
    border-left: 3px solid #32C8E9;
    color: #32C8E9;
}

/* Frequency Data */
.frequency-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.frequency-card {
    background: linear-gradient(135deg, #2F135D 0%, #1a0b2e 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(50, 200, 233, 0.3);
}

.frequency-percent {
    font-size: 3rem;
    font-weight: 800;
    color: #32C8E9;
    margin-bottom: 15px;
}

.frequency-desc {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.frequency-detail {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Monetization Grid */
.monetization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.monetization-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
}

.conversion-rate {
    background: #32C8E9;
    color: #0a0a0a;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 700;
    margin: 15px 0;
    display: inline-block;
}

/* Niche Grid */
.niche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.niche-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.niche-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.niche-stats span {
    background: rgba(50, 200, 233, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #32C8E9;
    font-weight: 600;
}

.niche-insights {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
}

.niche-insights strong {
    color: #ffffff;
}

/* Universal Patterns */
.patterns-list {
    margin-top: 30px;
}

.pattern-item {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #32C8E9;
}

.pattern-item h4 {
    color: #32C8E9;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pattern-item p {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Playbook Styles */
.playbook {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 50px;
    margin-top: 40px;
    border: 2px solid #2F135D;
}

.playbook-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #32C8E9;
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.7;
}

.playbook-section {
    margin-bottom: 60px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.playbook-section:last-child {
    border-bottom: none;
}

.playbook-section h3 {
    color: #32C8E9;
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.strategy-card {
    background: linear-gradient(135deg, #2F135D 0%, #1a0b2e 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(50, 200, 233, 0.3);
}

.strategy-card h4 {
    color: #32C8E9;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.strategy-card ul {
    list-style: none;
}

.strategy-card li {
    padding: 10px 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.strategy-card li:before {
    content: '→';
    color: #32C8E9;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Template List */
.template-list {
    margin-top: 25px;
}

.template {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #32C8E9;
}

.template h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.template-example {
    background: rgba(50, 200, 233, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    color: #32C8E9;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid rgba(50, 200, 233, 0.3);
}

/* Blueprint */
.blueprint {
    margin-top: 25px;
}

.blueprint-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
}

.step-num {
    background: linear-gradient(135deg, #32C8E9, #2F135D);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.blueprint-step .step-content {
    flex: 1;
}

.blueprint-step .step-content h4 {
    color: #32C8E9;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.blueprint-step .step-content p {
    color: #c0c0c0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Visual Strategy */
.visual-strategy {
    margin-top: 25px;
}

.visual-element {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid #333;
}

.visual-element h4 {
    color: #32C8E9;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.visual-element ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.visual-element li {
    background: rgba(50, 200, 233, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 0.95rem;
    border: 1px solid rgba(50, 200, 233, 0.2);
}

/* Integration Strategy */
.integration-strategy {
    margin-top: 25px;
}

.integration-ratio,
.integration-placement,
.integration-style {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #32C8E9;
}

.integration-style ul {
    list-style: none;
    margin-top: 15px;
}

.integration-style li {
    background: rgba(50, 200, 233, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    color: #32C8E9;
    font-size: 0.95rem;
    border: 1px solid rgba(50, 200, 233, 0.2);
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.schedule-day {
    background: linear-gradient(135deg, #2F135D 0%, #1a0b2e 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(50, 200, 233, 0.3);
}

.schedule-day h4 {
    color: #32C8E9;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.schedule-content {
    color: #c0c0c0;
    font-size: 0.95rem;
}

.schedule-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(50, 200, 233, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(50, 200, 233, 0.3);
    color: #e0e0e0;
    line-height: 1.6;
}

.schedule-note strong {
    color: #32C8E9;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.metric-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
}

.metric-card h4 {
    color: #32C8E9;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.metric-card ul {
    list-style: none;
}

.metric-card li {
    padding: 8px 0;
    color: #c0c0c0;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.metric-card li:before {
    content: '📊';
    position: absolute;
    left: 0;
}

/* Launch Phases */
.launch-phases {
    margin-top: 25px;
}

.phase {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #32C8E9;
    border: 1px solid #333;
}

.phase h4 {
    color: #32C8E9;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.phase ul {
    list-style: none;
}

.phase li {
    padding: 10px 0;
    color: #c0c0c0;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.phase li:before {
    content: '✓';
    color: #32C8E9;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2F135D 0%, #1a0b2e 100%);
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid rgba(50, 200, 233, 0.3);
}

.footer-content p {
    color: #a0a0a0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-note {
    color: #32C8E9 !important;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 40px 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
        min-width: 200px;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .findings-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        flex-direction: column;
        height: auto;
        gap: 10px;
        align-items: stretch;
    }
    
    .chart-bar {
        height: 40px !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .bar-label {
        position: static;
        margin-right: 10px;
    }
    
    .playbook {
        padding: 30px 20px;
    }
    
    .blueprint-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-num {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .section h3 {
        font-size: 1.5rem;
    }
    
    .finding-number {
        font-size: 2.5rem;
    }
    
    .length-number,
    .frequency-percent {
        font-size: 2rem;
    }
    
    .strategy-grid,
    .timing-grid,
    .niche-grid,
    .monetization-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(50, 200, 233, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(50, 200, 233, 0.3);
    color: #ffffff;
}