﻿body {
    margin: 0;
    font-family: "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 40%, #f7f4ff 100%);
    color: #333;
}

.exam-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 30%, #f5f0ff 100%);
    position: relative;
    overflow: hidden;
}

    .exam-hero::before,
    .exam-hero::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,122,0,0.2) 0%, transparent 70%);
        animation: float 12s ease-in-out infinite;
        z-index: 0;
    }

    .exam-hero::before {
        width: 400px;
        height: 400px;
        top: -100px;
        left: -100px;
    }

    .exam-hero::after {
        width: 300px;
        height: 300px;
        bottom: -100px;
        right: -80px;
        animation-delay: 4s;
    }

.exam-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.3s ease forwards;
    opacity: 0;
    max-width: 700px;
    padding: 0 15px;
}

.text-accent {
    color: #ff7a00;
}

.btn-accent {
    background-color: #ff7a00;
    color: #fff;
    border: none;
    transition: all .3s ease;
    border-radius: 8px;
}

    .btn-accent:hover {
        background-color: #e56f00;
        transform: translateY(-3px);
        box-shadow: 0 .5rem 1rem rgba(229,111,0,.3);
    }

.hover-float {
    transition: all .3s ease;
}

    .hover-float:hover {
        transform: translateY(-4px);
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(30px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }
}
