        :root {
            --primary-color: #2563eb;
            --secondary-color: #0d47a1;
            --accent-color: #10b981;
            --accent-secondary: #7c3aed;
            --text-color: #1e293b;
            --light-bg: #f8fafc;
            --dark-bg: #0f172a;
            --white: #ffffff;
            --gray: #e2e8f0;
            --gray-light: #f1f5f9;
            --border-color: #cbd5e1;
            --success-color: #10b981;
            --danger-color: #ef4444;
            --warning-color: #f59e0b;
            --line-color: #06C755;
            --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            -webkit-tap-highlight-color: transparent;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-color);
        }
        
        .app-container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* App Header */
        .app-header {
            background-color: var(--white);
            padding: 15px 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .app-logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .app-logo span {
            color: var(--accent-color);
        }
        
        .app-logo-icon {
            margin-right: 8px;
            font-size: 24px;
        }
        
        .back-button {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-color);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .back-button:active {
            background-color: var(--gray-light);
        }
        
        /* App Content */
        .app-content {
            flex: 1;
            padding-bottom: 60px; /* Space for bottom nav */
        }
        
        /* Page Title */
        .page-title {
            padding: 20px;
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--dark-bg);
        }
        
        /* Line Section */
        .line-section {
            padding: 0 20px 30px;
        }
        
        .line-card {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .line-header {
            background-color: var(--line-color);
            padding: 20px;
            color: var(--white);
            text-align: center;
        }
        
        .line-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            background-color: var(--white);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
        }
        
        .line-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .line-subtitle {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .line-content {
            padding: 20px;
        }
        
        .line-description {
            margin-bottom: 20px;
        }
        
        .line-benefits {
            margin-bottom: 20px;
        }
        
        .line-benefits-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-bg);
        }
        
        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
        }
        
        .benefit-icon {
            color: var(--line-color);
            margin-right: 10px;
            font-size: 20px;
            line-height: 1.3;
        }
        
        .line-cta {
            text-align: center;
            margin-top: 30px;
        }
        
        .line-button {
            display: inline-block;
            background-color: var(--line-color);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .line-button:active {
            transform: translateY(1px);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }
        
        .qr-code {
            width: 200px;
            height: 200px;
            background-color: var(--white);
            border: 1px solid var(--gray);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 15px;
        }

        .qr-code img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        .qr-code::before {
            content: "";
            position: absolute;
            top: 10px;
            left: 10px;
            width: 30px;
            height: 30px;
            border-left: 5px solid var(--dark-bg);
            border-top: 5px solid var(--dark-bg);
        }
        
        .qr-code::after {
            content: "";
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            border-right: 5px solid var(--dark-bg);
            border-bottom: 5px solid var(--dark-bg);
        }
        
        /* Bottom Navigation */
        .bottom-nav {
            background-color: var(--white);
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 0;
            color: #64748b;
        }
        
        .nav-item.active {
            color: var(--primary-color);
        }
        
        .nav-icon {
            font-size: 20px;
            margin-bottom: 4px;
        }
        
        .nav-label {
            font-size: 12px;
            font-weight: 500;
        }
