/* ============================================
   Truth or Juicy Truth App Specific Styles
   ============================================ */

/* Color Variables */
:root {
    --truth-primary: #ff6e1f;
    --truth-secondary: #ff3d5b;
    --truth-gradient: linear-gradient(135deg, #ff6e1f 0%, #ff3d5b 100%);
}

/* Hero Section */
.app-hero {
    background: var(--truth-gradient);
}

/* Buttons */
.btn-white {
    color: var(--truth-secondary);
}

.btn-outline-white:hover {
    color: var(--truth-secondary);
}

/* Feature Icons */
.feature-icon {
    background: var(--truth-gradient);
}

/* Screenshot Placeholder */
.screenshot-placeholder {
    background: var(--truth-gradient);
}

.screenshot {
    background: #f1f5f9;
}

/* Screenshots Section Background */
.screenshots-section {
    background: white;
}

/* Stats */
.stat-number {
    color: var(--truth-secondary);
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

