/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --text-color: #ffffff;
    --background-color: #000000;
    --section-padding: 120px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --apple-font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --apple-heading-font: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --apple-gradient: linear-gradient(135deg, #0066cc, #00a0ff);
    --apple-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
    --apple-border-radius: 18px;
    --morphing-duration: 0.8s;
    --morphing-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --glow-color: #0066cc;
    --glow-intensity: 0.8;
    --glow-spread: 20px;
}

body {
    font-family: var(--apple-font);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Alleen op de homepage de cursor verbergen */
body.homepage {
    cursor: none;
}

body.homepage * {
    cursor: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--apple-heading-font);
    font-weight: 600;
    letter-spacing: -0.003em;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

/* Header en navigatie */
header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 44px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.logo {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.022em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

.logo i {
    color: var(--primary-color);
    animation: pulse 3s infinite;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 12px;
    transition: var(--transition);
    opacity: 0.8;
    letter-spacing: -0.01em;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    gap: 1.5rem;
}

.nav-icon {
    font-size: 14px;
    opacity: 0.8;
}

/* Hero sectie */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: var(--background-color);
    margin-top: 44px;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 15%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 44px; /* Compensatie voor de header hoogte */
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    object-fit: contain;
    max-height: 80vh; /* Beperk de hoogte tot 80% van de viewport hoogte */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

#hero h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease, hero-title-glow 3s infinite alternate;
    letter-spacing: -0.003em;
    line-height: 1.07143;
    background: var(--apple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 102, 204, 0.6), 
                 0 0 60px rgba(0, 102, 204, 0.4),
                 0 0 90px rgba(0, 102, 204, 0.2);
    position: relative;
}

#hero h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes hero-title-glow {
    0% {
        text-shadow: 0 0 30px rgba(0, 102, 204, 0.6), 
                     0 0 60px rgba(0, 102, 204, 0.4),
                     0 0 90px rgba(0, 102, 204, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 102, 204, 0.8), 
                     0 0 80px rgba(0, 102, 204, 0.6),
                     0 0 120px rgba(0, 102, 204, 0.4);
        transform: scale(1.02);
    }
    100% {
        text-shadow: 0 0 50px rgba(0, 102, 204, 0.7), 
                     0 0 100px rgba(0, 102, 204, 0.5),
                     0 0 150px rgba(0, 102, 204, 0.3);
        transform: scale(1);
    }
}

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

#hero p {
    font-size: 28px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
    letter-spacing: 0.004em;
    line-height: 1.10722;
}

.hero-note {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.technical-specs {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1rem;
    animation: fadeInUp 1s ease 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
    background: rgba(0, 102, 204, 0.2);
    padding: 10px 20px;
    border-radius: var(--apple-border-radius);
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.8s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button {
    display: inline-block;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 980px;
    font-weight: 400;
    transition: var(--transition);
    font-size: 17px;
    line-height: 1.23536;
    letter-spacing: -0.022em;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

.cta-button i {
    margin-left: 5px;
    font-size: 14px;
}

.cta-button.primary {
    background: var(--apple-gradient);
    color: white;
    box-shadow: var(--apple-shadow);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #0055b3, #0088cc);
}

.cta-button.secondary:hover {
    background-color: rgba(0, 113, 227, 0.1);
}

/* Secties */
section {
    padding: var(--section-padding) 1rem;
}

section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-color);
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.08349;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.8), 
                 0 0 40px rgba(0, 102, 204, 0.4);
    animation: title-glow 3s infinite alternate;
}

.dark-section {
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
    animation: none;
}

.dark-section h2 {
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
    animation: text-glow 3s infinite alternate;
}

/* Sectie beschrijving */
.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: .011em;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.dark-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 980px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1c1c1e;
    border-radius: var(--apple-border-radius);
    box-shadow: var(--apple-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: pulse 3s infinite;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.16667;
}

.feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
}

/* Stappen container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 980px;
    margin: 0 auto;
    perspective: 1000px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
    animation: none;
}

.step {
    background: #1c1c1e;
    padding: 3rem;
    border-radius: var(--apple-border-radius);
    box-shadow: var(--apple-shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    opacity: 0;
    transform: translateX(-30px) scale(0.9) rotateY(-10deg);
    transition: all var(--morphing-duration) var(--morphing-timing);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step:nth-child(even) {
    transform: translateX(30px) scale(0.9) rotateY(10deg);
}

.step.visible {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--apple-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step:hover {
    transform: translateY(-10px) scale(1.02) rotateY(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 102, 204, 0.3);
    border: 1px solid rgba(0, 102, 204, 0.3);
}

.step:hover::before {
    transform: scaleX(1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--apple-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    transition: all var(--morphing-duration) var(--morphing-timing);
    transform-style: preserve-3d;
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.5);
}

.step:hover .step-number {
    transform: scale(1.2) rotateY(360deg);
    box-shadow: 0 0 25px rgba(0, 102, 204, 0.8);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.16667;
    color: #fff;
    transition: all var(--morphing-duration) var(--morphing-timing);
    transform-style: preserve-3d;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

.step:hover h3 {
    transform: translateY(-5px) translateZ(20px);
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 102, 204, 0.8);
}

.step p {
    color: #fff;
    line-height: 1.47059;
    font-size: 17px;
    letter-spacing: -0.022em;
    transition: all var(--morphing-duration) var(--morphing-timing);
    transform-style: preserve-3d;
}

.step:hover p {
    transform: translateY(5px) translateZ(10px);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

/* Materialen grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 980px;
    margin: 0 auto;
}

.material {
    text-align: center;
    padding: 2rem;
    background: #1c1c1e;
    border-radius: var(--apple-border-radius);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--apple-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.material.visible {
    opacity: 1;
    transform: scale(1);
}

.material:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.material img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.material:hover img {
    transform: scale(1.1) rotate(5deg);
}

.material h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.003em;
    line-height: 1.16667;
}

.material p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
}

/* Footer */
footer {
    background-color: #1c1c1e;
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
    font-size: 12px;
    line-height: 1.33337;
    letter-spacing: -0.01em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 980px;
    margin: 0 auto;
}

.footer-section h4 {
    font-size: 12px;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.33337;
    letter-spacing: -0.01em;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.33337;
    letter-spacing: -0.01em;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes text-glow {
    0% {
        text-shadow: 0 0 10px rgba(0, 64, 128, 0.5), 0 0 20px rgba(102, 0, 204, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(0, 64, 128, 0.7), 0 0 30px rgba(102, 0, 204, 0.5), 0 0 40px rgba(0, 204, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 12px rgba(0, 102, 204, 0.6), 0 0 25px rgba(102, 0, 204, 0.4);
    }
}

/* Scroll Animaties */
.step {
    opacity: 0;
    transform: translateX(-30px) scale(0.9) rotateY(-10deg);
    transition: all var(--morphing-duration) var(--morphing-timing);
}

.step:nth-child(even) {
    transform: translateX(30px) scale(0.9) rotateY(10deg);
}

.step.visible {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0);
}

.material {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.material.visible {
    opacity: 1;
    transform: scale(1);
}

/* Bestaande animaties behouden */
#hero h1 {
    animation: fadeInUp 1s ease;
}

#hero p {
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-note {
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.technical-specs {
    animation: fadeInUp 1s ease 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-buttons {
    animation: fadeInUp 1s ease 0.8s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

/* Voeg JavaScript toe voor scroll animaties */

/* Responsive design */
@media (max-width: 1024px) {
    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

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

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    #hero h1 {
        font-size: 32px;
    }

    #hero p {
        font-size: 19px;
    }

    .step {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Filter showcase */
.filter-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 4rem;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.filter-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-image {
    width: 100%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(0, 102, 204, 0.3));
    animation: float 6s ease-in-out infinite;
}

.filter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(90deg, #000000, #003366, #6600cc, #00a0ff, #00ccff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    z-index: 0;
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.5), 0 0 20px rgba(0, 160, 255, 0.3);
    animation: text-glow 6s infinite alternate;
    letter-spacing: 0.02em;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    background-size: 100% auto;
    background-position: 0% center;
}

.filter-text span {
    display: inline-block;
    opacity: 0;
    animation: typewriter 0.3s forwards;
    animation-delay: calc(var(--letter-index) * 0.05s);
    position: relative;
    margin-right: 0.05em;
}

@keyframes typewriter {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design voor filter showcase */
@media (max-width: 768px) {
    .filter-showcase {
        height: 300px;
    }
    
    .filter-text {
        font-size: 48px;
    }
}

/* Disclaimer stijl */
.disclaimer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 9999;
    max-width: 80%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease forwards;
    opacity: 1;
}

.disclaimer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.disclaimer i {
    color: #ff3b30;
    margin-right: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Apple cursor alleen zichtbaar op de "Hoe moet je het maken?" pagina */
.apple-cursor {
    position: fixed;
    width: 64px;
    height: 64px;
    background-image: url('images/cursor.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform-origin: center;
    will-change: transform, opacity;
    transition: opacity 0.3s ease;
    display: none !important;
    visibility: hidden !important;
}

/* Alleen zichtbaar op de "Hoe moet je het maken?" pagina */
body.how-to-make .apple-cursor {
    display: none !important;
    visibility: hidden !important;
}

/* Alleen zichtbaar wanneer de filter-showcase in beeld is */
body.how-to-make .filter-showcase.visible ~ .apple-cursor,
body.how-to-make .filter-showcase.visible .apple-cursor {
    display: block !important;
    visibility: visible !important;
}

.apple-cursor.active {
    opacity: 1;
    animation: move-to-filter 4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    display: none !important;
    visibility: hidden !important;
}

/* Alleen zichtbaar op de "Hoe moet je het maken?" pagina */
body.how-to-make .apple-cursor.active {
    display: block !important;
    visibility: visible !important;
}

.apple-cursor.clicking {
    background-image: url('images/cursor2.png');
    animation: cursor-click 1.5s ease forwards;
    display: none !important;
    visibility: hidden !important;
}

/* Alleen zichtbaar op de "Hoe moet je het maken?" pagina */
body.how-to-make .apple-cursor.clicking {
    display: block !important;
    visibility: visible !important;
}

@keyframes move-to-filter {
    0% {
        left: 100%;
        top: 100%;
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
    }
    25% {
        left: 80%;
        top: 80%;
        transform: scale(1.2);
    }
    50% {
        left: 60%;
        top: 60%;
        transform: scale(1.1);
    }
    75% {
        left: 40%;
        top: 40%;
        transform: scale(1.2);
    }
    100% {
        left: var(--target-x, 50%);
        top: var(--target-y, 50%);
        transform: scale(1.3);
    }
}

@keyframes cursor-click {
    0% {
        transform: scale(1.3);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
    }
    25% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1));
    }
    50% {
        transform: scale(0.9);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
    }
    75% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1));
    }
    100% {
        transform: scale(1.3);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
    }
}

@keyframes title-glow {
    0% {
        text-shadow: 0 0 20px rgba(0, 102, 204, 0.8),
                     0 0 40px rgba(0, 102, 204, 0.4);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 102, 204, 1),
                     0 0 60px rgba(0, 102, 204, 0.8);
    }
    100% {
        text-shadow: 0 0 40px rgba(0, 102, 204, 0.9),
                     0 0 80px rgba(0, 102, 204, 0.7);
    }
} 