.elementor-2148 .elementor-element.elementor-element-4906ab8{--display:flex;}.elementor-2148 .elementor-element.elementor-element-8983e61{--display:flex;}.elementor-2148 .elementor-element.elementor-element-17fe92f .elementor-repeater-item-6bced06.elementor-social-icon{background-color:#BF4012;}.elementor-2148 .elementor-element.elementor-element-17fe92f .elementor-repeater-item-6bced06.elementor-social-icon i{color:#FBE7E7;}.elementor-2148 .elementor-element.elementor-element-17fe92f .elementor-repeater-item-6bced06.elementor-social-icon svg{fill:#FBE7E7;}.elementor-2148 .elementor-element.elementor-element-17fe92f{--grid-template-columns:repeat(0, auto);--grid-column-gap:30px;--grid-row-gap:0px;}.elementor-2148 .elementor-element.elementor-element-17fe92f .elementor-widget-container{text-align:center;}.elementor-2148 .elementor-element.elementor-element-17fe92f .elementor-social-icon{--icon-padding:0.6em;}/* Start custom CSS for html, class: .elementor-element-032a76b */:root {
            --primary: #667eea;
            --primary-dark: #5a67d8;
            --secondary: #764ba2;
            --accent: #f093fb;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #718096;
            --light-gray: #e2e8f0;
            --border: #cbd5e0;
            --success: #48bb78;
            --warning: #ed8936;
            --danger: #f56565;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
            --card-hover: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #f8fafc;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            /*padding: 0 20px;*/
        }

        /* Header Styles */
        header {
            background: var(--gradient);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            backdrop-filter: blur(10px);
        }

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

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: #e2e8f0;
            transform: translateY(-1px);
        }

        nav a.active {
            color: #e2e8f0;
            font-weight: 600;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        nav a:hover::after, nav a.active::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: var(--gradient);
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Main Content */
        main {
            padding: 3rem 0;
        }

        .content-section {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .content-section:hover {
            box-shadow: var(--card-hover);
            transform: translateY(-2px);
        }

        .content-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
            font-weight: 600;
        }

        .content-section h3 {
            color: var(--dark);
            margin: 2rem 0 1rem 0;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .content-section h4 {
            color: var(--dark);
            margin: 1.5rem 0 0.5rem 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .content-section p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .content-section ul {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--gray);
        }

        .content-section li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Development Cards */
        .dev-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .dev-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dev-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
        }

        .dev-card:hover {
            box-shadow: var(--card-hover);
            transform: translateY(-4px);
        }

        .dev-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .dev-card p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        /* Progress Indicators */
        .progress-item {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .progress-item:hover {
            background: white;
            box-shadow: var(--card-shadow);
        }

        .progress-item h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .progress-item p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .progress-bar {
            background: var(--light-gray);
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            margin-top: 1rem;
        }

        .progress-fill {
            height: 100%;
            background: var(--gradient);
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        /* Status Tags */
        .status-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .status-tag {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .status-tag.planned {
            background: var(--light-gray);
            color: var(--gray);
        }

        .status-tag.in-progress {
            background: #fef3c7;
            color: #d97706;
            border-color: #f59e0b;
        }

        .status-tag.completed {
            background: #d1fae5;
            color: #065f46;
            border-color: var(--success);
        }

        .status-tag:hover {
            transform: translateY(-1px);
            box-shadow: var(--card-shadow);
        }

        /* Changelog */
        .changelog-item {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
        }

        .changelog-item:hover {
            background: white;
            box-shadow: var(--card-shadow);
        }

        .changelog-item h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .changelog-item .date {
            color: var(--gray);
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .changelog-item p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            /*background: var(--dark);*/
            background: var(--gradient);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .content-section {
                padding: 1.5rem;
            }

            .dev-grid {
                grid-template-columns: 1fr;
            }

            .status-tags {
                justify-content: center;
            }
        }

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

        .content-section {
            animation: fadeInUp 0.6s ease-out;
        }

        .dev-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .progress-item {
            animation: fadeInUp 0.6s ease-out;
        }/* End custom CSS */
/* Start custom CSS for social-icons, class: .elementor-element-17fe92f */.elementor-element .elementor-element-241bbc2 .elementor-widget .elementor-widget-html{
    text-align:center;
}/* End custom CSS */