        :root {
            --dark-green-color: #38A179;
            --light-green-color: #5CA187;
            --charcoal-color: #2D3748;
            --ethereal-blue-color: #7C9CBF;
            --ice-white-color: #F7FAFC;
            --sky-whisper-color: #EBF4FF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, var(--dark-green-color) 0%, var(--light-green-color) 50%, var(--ethereal-blue-color) 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--charcoal-color);
            overflow: hidden;
            position: relative;
        }
        
        /* Animált háttér buborékok */
        .bubbles {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }
        
        .bubble {
            position: absolute;
            bottom: -150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            opacity: 0.5;
            animation: rise 15s infinite ease-in;
        }
        
        .bubble:nth-child(1) {
            width: 80px;
            height: 80px;
            left: 10%;
            animation-duration: 12s;
            animation-delay: 0s;
        }
        
        .bubble:nth-child(2) {
            width: 120px;
            height: 120px;
            left: 20%;
            animation-duration: 14s;
            animation-delay: 2s;
        }
        
        .bubble:nth-child(3) {
            width: 60px;
            height: 60px;
            left: 35%;
            animation-duration: 16s;
            animation-delay: 4s;
        }
        
        .bubble:nth-child(4) {
            width: 100px;
            height: 100px;
            left: 50%;
            animation-duration: 13s;
            animation-delay: 1s;
        }
        
        .bubble:nth-child(5) {
            width: 90px;
            height: 90px;
            left: 65%;
            animation-duration: 15s;
            animation-delay: 3s;
        }
        
        .bubble:nth-child(6) {
            width: 70px;
            height: 70px;
            left: 80%;
            animation-duration: 17s;
            animation-delay: 5s;
        }
        
        .bubble:nth-child(7) {
            width: 110px;
            height: 110px;
            left: 90%;
            animation-duration: 14s;
            animation-delay: 2s;
        }
        
        @keyframes rise {
            0% {
                bottom: -150px;
                transform: translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                bottom: 110vh;
                transform: translateX(100px);
                opacity: 0;
            }
        }
        
        .container {
            text-align: center;
            padding: 60px 40px;
            background: rgba(247, 250, 252, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(45, 55, 72, 0.3);
            max-width: 600px;
            animation: fadeIn 1s ease-in;
            position: relative;
            z-index: 1;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .logo {
            margin-bottom: 20px;
            animation: bounce 2s infinite;
            filter: drop-shadow(0 4px 8px rgba(56, 161, 121, 0.3));
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: bold;
            color: var(--dark-green-color);
        }
        
        p {
            font-size: 1.2em;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--charcoal-color);
            font-weight: 400;
        }
        
        .status {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--dark-green-color), var(--light-green-color));
            color: white;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(56, 161, 121, 0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .spinner {
            border: 10px solid rgb(213, 213, 213);
            border-top: 10px solid var(--dark-green-color);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 30px auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .footer {
            margin-top: 40px;
            font-size: 0.95em;
            color: var(--ethereal-blue-color);
            font-weight: 500;
        }
        
        .icon-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            font-size: 2em;
        }
        
        .icon-item {
            animation: float 3s ease-in-out infinite;
            transition: transform 0.3s ease;
        }
        
        .icon-item:hover {
            transform: scale(1.2) rotate(10deg);
        }
        
        .icon-item:nth-child(2) {
            animation-delay: 0.5s;
        }
        
        .icon-item:nth-child(3) {
            animation-delay: 1s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* Mozgó gradient effekt a háttéren */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(255, 255, 255, 0.1), 
                transparent);
            animation: shimmer 3s infinite;
            pointer-events: none;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 40px 20px;
                margin: 20px;
            }
            h1 {
                font-size: 2em;
            }
            p {
                font-size: 1em;
            }
            .logo {
                font-size: 3em;
            }
        }