:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: rgba(99, 102, 241, 0.1);
    --secondary: #10b981;
    --secondary-light: rgba(16, 185, 129, 0.1);
    --blue: #0ea5e9;
    --purple: #8b5cf6;
    --green: #10b981;
    --orange: #f59e0b;
    --red: #ef4444;
    --text-dark: #f8fafc;
    --text-light: #94a3b8;
    --text-lighter: #64748b;
    --bg-dark: #111827;
    --bg-darker: #0f172a;
    --bg-light: #1e293b;
    --white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(30, 41, 59, 0.9);
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: var(--primary-light);
    z-index: -1;
    border-radius: 5px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn i {
    margin-left: 8px;
    font-size: 1.1em;
}

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

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

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #0da271;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

/* Animation Styles */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.8s ease forwards;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

[data-delay="100"] {
    animation-delay: 0.1s;
}

[data-delay="200"] {
    animation-delay: 0.2s;
}

[data-delay="300"] {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Icon Styles */
[class^="icon-"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 20px;
    color: #fff;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary) 0%, rgba(139, 92, 246, 0.5) 100%);
    filter: blur(80px);
    z-index: -1;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    opacity: 0.2;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    opacity: 0.15;
}

/* Dashboard Preview */
.dashboard-preview {
    width: 100%;
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
}

.dashboard-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.dashboard-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.dashboard-dots span:nth-child(3) {
    background-color: #27c93f;
}

.dashboard-title {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--white);
}

.dashboard-title i {
    margin-right: 8px;
    color: var(--primary);
}

.dashboard-body {
    padding: 20px;
    position: relative;
}

/* Heatmap Styles */
.heatmap-container {
    margin-bottom: 20px;
}

.heatmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.heatmap-header h4 {
    margin-bottom: 0;
    color: var(--white);
}

.heatmap-filters {
    display: flex;
    gap: 10px;
}

.heatmap-filters span {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 15px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.heatmap-filters span.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

.heatmap-visual {
    position: relative;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    gap: 15px;
}

.website-mockup {
    flex: 1;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.mockup-header {
    height: 15%;
    background-color: rgba(255, 255, 255, 0.07);
}

.mockup-hero {
    height: 40%;
    margin: 5px 0;
    background-color: rgba(255, 255, 255, 0.03);
    position: relative;
}

.mockup-features {
    height: 25%;
    margin-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
}

.mockup-cta {
    height: 15%;
    background-color: rgba(255, 255, 255, 0.03);
    position: relative;
}

.hotspot {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hotspot-high {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.6) 0%, rgba(239, 68, 68, 0) 70%);
    top: 50%;
    left: 30%;
    animation: pulse 2s infinite;
}

.hotspot-medium {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.5) 0%, rgba(245, 158, 11, 0) 70%);
    top: 50%;
    left: 70%;
}

.hotspot-low {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0) 70%);
    top: 50%;
    left: 50%;
}

.heatmap-scale {
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.scale-point {
    font-size: 0.7rem;
    color: var(--text-light);
}

.scale-gradient {
    flex: 1;
    width: 10px;
    margin: 10px 0;
    background: linear-gradient(to bottom, #ef4444, #f59e0b, #10b981);
    border-radius: 5px;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
}

.stat-change.positive {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.stat-change.negative {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--red);
}

/* Features Section */
.features-section {
    background-color: var(--bg-darker);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 15px;
    color:#ffffff;
}

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

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.feature-icon--blue {
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--blue);
}

.feature-icon--green {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.feature-icon--purple {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.feature-icon--orange {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--orange);
}

.feature-card h3 {
    margin-bottom: 10px;
    color:#ffffff;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Preview Section */
.preview-section {
    background-color: var(--bg-dark);
    position: relative;
}

.preview-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.preview-content {
    flex: 1;
}

.preview-content h2 {
    margin-bottom: 20px;
    color:#ffffff;
}

.preview-content p {
    margin-bottom: 25px;
}

.preview-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.preview-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.preview-features li i {
    color: var(--secondary);
    margin-right: 10px;
}

.preview-image {
    flex: 1;
    position: relative;
}

.browser-window {
    width: 100%;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background-color: #27c93f;
}

.browser-address {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.browser-address i {
    margin-right: 5px;
    color: var(--green);
}

.browser-content {
    padding: 0;
    position: relative;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Session Player Styles */
.session-player {
    width: 100%;
    background-color: var(--bg-darker);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    overflow: hidden;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.player-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
}

.session-time {
    font-size: 0.85rem;
    color: var(--text-light);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.control-btn-play {
    background-color: var(--primary);
    color: var(--white);
}

.control-btn-play:hover {
    background-color: var(--primary-dark);
}

.control-btn-play.active {
    background-color: var(--primary-dark);
}

.playback-speed {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 3px 6px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
}

.player-viewport {
    position: relative;
    height: 330px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.viewport-mockup {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #1e293b;
    overflow: hidden;
    border-radius: 4px;
}

.mockup-webpage {
    position: absolute;
    width: 90%;
    height: 800px; /* Kaydırma için ekstra uzun */
    left: 5%;
    background-color: #151926;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.cursor-pointer {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    pointer-events: none;
    z-index: 10;
    transition: left 1s ease, top 1s ease;
}

.interaction-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.3);
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    animation: ripple 1.5s infinite;
}

.scroll-depth {
    position: absolute;
    right: 5px;
    top: 0;
    width: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: height 0.5s ease;
}

.timeline {
    position: relative;
    padding: 15px 20px;
    background-color: var(--bg-darker);
}

.timeline-track {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    position: relative;
    margin-bottom: 10px;
}

.timeline-events {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-marker {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.event-click {
    background-color: var(--blue);
}

.event-form {
    background-color: var(--purple);
}

.event-conversion {
    background-color: var(--green);
}

.playhead {
    position: absolute;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    transform: translate(-50%, -25%);
    transition: left 0.5s linear;
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.session-details {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-darker);
}

.detail-tab {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.detail-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.detail-content {
    padding: 15px 20px;
}

.event-list {
    max-height: 150px;
    overflow-y: auto;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.event-item.highlight {
    background-color: rgba(239, 68, 68, 0.1);
    padding: 8px 10px;
    border-radius: 6px;
}

.event-item.active {
    background-color: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    padding: 8px 10px;
}

.event-time {
    width: 40px;
    font-weight: 600;
    color: var(--text-light);
}

.event-icon {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.event-desc {
    flex: 1;
    color: var(--text-light);
}

.event-item.highlight .event-desc {
    color: var(--red);
}

.dashboard-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
}

.preview-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.preview-shape-1 {
    width: 400px;
    height: 400px;
    top: 0;
    left: -200px;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    margin-bottom: 15px;
    color:#ffffff;
}

.cta-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.cta-trusted {
    margin-top: 30px;
}

.cta-trusted p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trusted-logos img {
    height: 30px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trusted-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Placeholder for missing images */
.trusted-logos img {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 120px;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0) 70%);
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: 5%;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
}

/* Responsive Styles */
@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content,
    .preview-wrapper {
        flex-direction: column;
    }
    
    .hero-text,
    .preview-content {
        order: 1;
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons,
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image,
    .preview-image {
        order: 0;
        margin-bottom: 40px;
    }
    
    .preview-features li {
        justify-content: center;
    }
    
    .player-viewport {
        height: 300px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .player-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .player-viewport {
        height: 250px;
    }
    
    .detail-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Icons using CSS custom properties */
.icon-arrow-right {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M14 5l7 7m0 0l-7 7m7-7H3'%3E%3C/path%3E%3C/svg%3E");
}

.icon-play {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z'%3E%3C/path%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 12a9 9 0 11-18 0 9 9 0 0118 0z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-users {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-eye {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z'%3E%3C/path%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-route {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 20l-5.447-2.724A1 1 0 013 16.382V5.618a1 1 0 011.447-.894L9 7m0 13l6-3m-6 3V7m6 10l4.553 2.276A1 1 0 0021 18.382V7.618a1 1 0 00-.553-.894L15 4m0 13V4m0 0L9 7'%3E%3C/path%3E%3C/svg%3E");
}

.icon-video {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-funnel {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 4a1 1 0 011-1h16a1 1 0 011 1v2.586a1 1 0 01-.293.707l-6.414 6.414a1 1 0 00-.293.707V17l-4 4v-6.586a1 1 0 00-.293-.707L3.293 7.293A1 1 0 013 6.586V4z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-check {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E");
}

.icon-lock {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-skip-back {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12.066 11.2a1 1 0 000 1.6l5.334 4A1 1 0 0019 16V8a1 1 0 00-1.6-.8l-5.333 4zM4.066 11.2a1 1 0 000 1.6l5.334 4A1 1 0 0011 16V8a1 1 0 00-1.6-.8l-5.334 4z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-play-circle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z'%3E%3C/path%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 12a9 9 0 11-18 0 9 9 0 0118 0z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-skip-forward {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.933 12.8a1 1 0 000-1.6L6.6 7.2A1 1 0 005 8v8a1 1 0 001.6.8l5.333-4zM19.933 12.8a1 1 0 000-1.6l-5.333-4A1 1 0 0013 8v8a1 1 0 001.6.8l5.333-4z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-mouse-click {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122'%3E%3C/path%3E%3C/svg%3E");
}

.icon-form {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2'%3E%3C/path%3E%3C/svg%3E");
}

.icon-alert {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-calendar {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'%3E%3C/path%3E%3C/svg%3E");
}

/* Additional Session Player Styles */
.mockup-webpage .mockup-header {
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
}

.mockup-webpage .mockup-hero {
    height: 200px;
    background-color: rgba(255, 255, 255, 0.03);
    margin: 0 15px 15px 15px;
    border-radius: 4px;
}

.mockup-webpage .mockup-section {
    height: 120px;
    background-color: rgba(255, 255, 255, 0.02);
    margin: 15px;
    border-radius: 4px;
}

.mockup-webpage .mockup-footer {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.04);
    margin-top: 15px;
}

/* Icon fixes */
.icon-skip-back, .icon-play-circle, .icon-skip-forward, .icon-lock,
.icon-mouse-click, .icon-form, .icon-alert {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}