
        * {
            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: #fff;
        }

        .p2twi-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

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

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

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

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

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

        .p2twi-nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .p2twi-nav-menu a:hover {
            color: #007bff;
        }

        .p2twi-nav-menu a.active {
            color: #007bff;
        }

        .p2twi-nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: #007bff;
        }

        .p2twi-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .p2twi-main {
            margin-top: 70px;
        }

        .p2twi-servers-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .p2twi-servers-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/servers.jpg') center/cover;
            opacity: 0.2;
            z-index: 1;
        }

        .p2twi-servers-hero .p2twi-container {
            position: relative;
            z-index: 2;
        }

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

        .p2twi-servers-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .p2twi-servers-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .p2twi-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .p2twi-stat-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

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

        .p2twi-stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        .p2twi-servers-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .p2twi-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .p2twi-section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .p2twi-section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .p2twi-servers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .p2twi-server-region {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid transparent;
        }

        .p2twi-server-region:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #007bff;
        }

        .p2twi-region-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .p2twi-region-flag {
            font-size: 2rem;
            margin-right: 15px;
        }

        .p2twi-region-info h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .p2twi-region-info p {
            color: #666;
            font-size: 0.9rem;
        }

        .p2twi-server-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .p2twi-server-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .p2twi-server-item:last-child {
            border-bottom: none;
        }

        .p2twi-server-name {
            font-weight: 500;
            color: #333;
        }

        .p2twi-server-status {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .p2twi-status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #28a745;
        }

        .p2twi-status-dot.warning {
            background: #ffc107;
        }

        .p2twi-status-dot.error {
            background: #dc3545;
        }

        .p2twi-ping-time {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        .p2twi-region-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .p2twi-stat {
            text-align: center;
        }

        .p2twi-stat-value {
            font-size: 1.2rem;
            font-weight: 600;
            color: #007bff;
            display: block;
        }

        .p2twi-stat-text {
            font-size: 0.8rem;
            color: #666;
        }

        .p2twi-features-section {
            padding: 80px 0;
            background: white;
        }

        .p2twi-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .p2twi-feature-card {
            text-align: center;
            padding: 30px 20px;
        }

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

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

        .p2twi-feature-card p {
            color: #666;
            line-height: 1.6;
        }

        .p2twi-map-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .p2twi-map-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .p2twi-map-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .p2twi-map-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/servers.jpg') center/cover;
            opacity: 0.3;
        }

        .p2twi-map-placeholder span {
            position: relative;
            z-index: 2;
        }

        .p2twi-global-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .p2twi-global-stat {
            text-align: center;
        }

        .p2twi-global-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #007bff;
            display: block;
            margin-bottom: 5px;
        }

        .p2twi-global-stat-label {
            color: #666;
            font-size: 0.9rem;
        }

        .p2twi-cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .p2twi-cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .p2twi-cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .p2twi-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .p2twi-btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .p2twi-btn-primary {
            background: white;
            color: #667eea;
        }

        .p2twi-btn-primary:hover {
            background: transparent;
            color: white;
            border-color: white;
        }

        .p2twi-btn-outline {
            background: transparent;
            color: white;
            border-color: white;
        }

        .p2twi-btn-outline:hover {
            background: white;
            color: #667eea;
        }

        .p2twi-footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }

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

        .p2twi-footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ecf0f1;
        }

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

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

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

        .p2twi-footer-section ul li a:hover {
            color: #3498db;
        }

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

        @media (max-width: 768px) {
            .p2twi-menu-toggle {
                display: flex;
            }

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

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

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

            .p2twi-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .p2twi-servers-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .p2twi-features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .p2twi-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .p2twi-global-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .p2twi-map-placeholder {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .p2twi-container {
                padding: 0 15px;
            }

            .p2twi-servers-hero {
                padding: 60px 0;
            }

            .p2twi-servers-section,
            .p2twi-features-section,
            .p2twi-map-section,
            .p2twi-cta-section {
                padding: 60px 0;
            }

            .p2twi-stats-grid {
                grid-template-columns: 1fr;
            }

            .p2twi-global-stats {
                grid-template-columns: 1fr;
            }
        }
    