        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .container {
            min-height: 100vh;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
            display: flex;
            flex-direction: column;
        }

        .header {
            padding: 24px;
            text-align: center;
            opacity: 0;
            animation: fadeInDown 0.8s ease-out forwards;
        }

        .logo {
            width: 120px;
            height: 60px;
            margin: 0 auto 16px;
            background: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #667eea;
            font-size: 18px;
        }

        .header h1 {
            font-size: 28px;
            font-weight: bold;
            color: white;
            margin-bottom: 8px;
        }

        .header p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }

        .content {
            flex: 1;
            margin-top: 20px;
            background: white;
            border-radius: 30px 30px 0 0;
            padding: 24px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out 0.2s forwards;
        }

        .app-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .app-card {
            height: 120px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateX(50px) scale(0.8);
            position: relative;
        }

        .app-card:nth-child(1) { animation: slideInCard 0.6s ease-out 0.4s forwards; }
        .app-card:nth-child(2) { animation: slideInCard 0.6s ease-out 0.6s forwards; }
        .app-card:nth-child(3) { animation: slideInCard 0.6s ease-out 0.8s forwards; }

        .app-card:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .app-card:active {
            transform: translateY(-2px) scale(0.98);
        }

        .smart-mobile {
            background: url('assets/openbank_bg.webp?v=1') no-repeat center/cover;
        }

        .agrobank {
            background: url('assets/agro_bg.svg') no-repeat center/cover;
        }

        .open-card {
            background: url('assets/default_bg.svg') no-repeat center/cover;
        }

        .card-content {
            height: 100%;
            padding: 20px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .card-background {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .card-background::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .app-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-right: 20px;
            font-size: 24px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .smart-mobile .app-icon {
            background-color: white;
            background-image: url('assets/openbank_circle.svg?v=2');
            background-repeat: no-repeat;
            background-position: center;
            background-size: calc(100% - 10px);
            color: white;
        }

        .agrobank .app-icon {
            background: url('assets/agro_circle.svg') no-repeat center/cover;
            color: white;
        }

        .open-card .app-icon {
            background: url('assets/open_circle.svg') no-repeat center/cover;
            color: white;
        }

        .app-info {
            flex: 1;
            color: white;
        }

        .app-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .app-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.3;
        }

        .arrow-icon {
            color: white;
            font-size: 20px;
            margin-left: 10px;
        }

        .error-dialog {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .dialog-content {
            background: white;
            border-radius: 12px;
            padding: 24px;
            max-width: 300px;
            width: 90%;
            text-align: center;
            transform: scale(0.8);
            animation: dialogPop 0.3s ease-out forwards;
        }

        .dialog-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 12px;
            color: #333;
        }

        .dialog-message {
            color: #666;
            margin-bottom: 20px;
        }

        .dialog-button {
            background: #667eea;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }

        .dialog-button:hover {
            background: #5a6fd8;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes slideInCard {
            from {
                opacity: 0;
                transform: translateX(50px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        @keyframes dialogPop {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 20px 16px;
            }

            .header h1 {
                font-size: 24px;
            }

            .content {
                padding: 20px 16px;
            }

            .app-card {
                height: 100px;
            }

            .card-content {
                padding: 16px;
            }

            .app-icon {
                width: 50px;
                height: 50px;
                margin-right: 16px;
            }

            .app-name {
                font-size: 18px;
            }

            .app-description {
                font-size: 13px;
            }
        }
