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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
        line-height: 1.6;
        color: #333;
        background: #f8f9fa;
    }

    /* Header */
    .dpr0y-header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .dpr0y-nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 70px;
    }

    .dpr0y-logo img {
        height: 40px;
        width: auto;
    }

    .dpr0y-menu-toggle {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .dpr0y-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    .dpr0y-nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .dpr0y-nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
        padding: 10px 0;
    }

    .dpr0y-nav-menu a:hover,
    .dpr0y-nav-menu a.active {
        color: #4285f4;
    }

    .dpr0y-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    /* Page Header */
    .dpr0y-page-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 0 40px;
        text-align: center;
    }

    .dpr0y-page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .dpr0y-page-header p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Translator Container */
    .dpr0y-translator-wrapper {
        max-width: 1200px;
        margin: -20px auto 0;
        padding: 0 20px;
        position: relative;
        z-index: 10;
    }

    .dpr0y-translator-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        overflow: hidden;
        margin-bottom: 60px;
    }

    /* Language Selector */
    .dpr0y-lang-selector {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px;
        background: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
    }

    .dpr0y-lang-box {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .dpr0y-lang-select {
        padding: 12px 20px;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        font-size: 16px;
        background: white;
        cursor: pointer;
        transition: all 0.3s;
        min-width: 150px;
    }

    .dpr0y-lang-select:hover,
    .dpr0y-lang-select:focus {
        border-color: #4285f4;
        outline: none;
    }

    .dpr0y-swap-btn {
        background: #4285f4;
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dpr0y-swap-btn:hover {
        background: #3367d6;
        transform: rotate(180deg);
    }

    /* Translation Area */
    .dpr0y-translation-area {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 400px;
    }

    .dpr0y-input-panel,
    .dpr0y-output-panel {
        padding: 30px;
        display: flex;
        flex-direction: column;
    }

    .dpr0y-input-panel {
        border-right: 1px solid #e9ecef;
    }

    .dpr0y-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .dpr0y-panel-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

    .dpr0y-char-count {
        font-size: 14px;
        color: #666;
    }

    .dpr0y-text-input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 16px;
        line-height: 1.6;
        resize: none;
        font-family: inherit;
        background: transparent;
    }

    .dpr0y-text-input::placeholder {
        color: #999;
    }

    .dpr0y-text-output {
        flex: 1;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        min-height: 200px;
        white-space: pre-wrap;
    }

    .dpr0y-input-tools {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e9ecef;
    }

    .dpr0y-tool-btn {
        background: none;
        border: 1px solid #e9ecef;
        padding: 8px 15px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        color: #666;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .dpr0y-tool-btn:hover {
        border-color: #4285f4;
        color: #4285f4;
    }

    .dpr0y-output-tools {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e9ecef;
    }

    /* Quick Features */
    .dpr0y-quick-features {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .dpr0y-features-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 50px;
        color: #333;
    }

    .dpr0y-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .dpr0y-feature-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s;
    }

    .dpr0y-feature-card:hover {
        transform: translateY(-5px);
    }

    .dpr0y-feature-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .dpr0y-feature-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #333;
        font-weight: 600;
    }

    .dpr0y-feature-desc {
        color: #666;
        line-height: 1.6;
    }

    /* Stats Section */
    .dpr0y-stats-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 0;
    }

    .dpr0y-stats-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .dpr0y-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        text-align: center;
    }

    .dpr0y-stat-item {
        padding: 20px;
    }

    .dpr0y-stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
        display: block;
    }

    .dpr0y-stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    /* Footer */
    .dpr0y-footer {
        background: #2c3e50;
        color: white;
        padding: 50px 0 30px;
    }

    .dpr0y-footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

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

    .dpr0y-footer-section h3 {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

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

    .dpr0y-footer-section ul li {
        margin-bottom: 10px;
    }

    .dpr0y-footer-section ul li a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s;
    }

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

    .dpr0y-footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #34495e;
        color: #bdc3c7;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .dpr0y-menu-toggle {
            display: flex;
        }

        .dpr0y-nav-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .dpr0y-nav-menu.active {
            display: flex;
        }

        .dpr0y-page-header h1 {
            font-size: 2rem;
        }

        .dpr0y-page-header p {
            font-size: 1rem;
        }

        .dpr0y-lang-box {
            flex-direction: column;
            gap: 15px;
        }

        .dpr0y-lang-select {
            min-width: 200px;
        }

        .dpr0y-translation-area {
            grid-template-columns: 1fr;
        }

        .dpr0y-input-panel {
            border-right: none;
            border-bottom: 1px solid #e9ecef;
        }

        .dpr0y-features-title {
            font-size: 1.8rem;
        }

        .dpr0y-stat-number {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 480px) {
        .dpr0y-translator-wrapper {
            padding: 0 10px;
        }

        .dpr0y-input-panel,
        .dpr0y-output-panel {
            padding: 20px;
        }

        .dpr0y-lang-selector {
            padding: 20px;
        }

        .dpr0y-input-tools,
        .dpr0y-output-tools {
            flex-wrap: wrap;
        }
    }
    