        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
        background: 
            url("backgr.webp") center/cover no-repeat, 
            linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
            color: #2f2f2f;
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            padding: 40px 0;
            background: rgba(13, 27, 42, 0.7);
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid #415a77;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            color: #ff0000;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        a {
            color: #000 !important;
            text-decoration: none

        }
        
        .subtitle {
            font-size: 1.2rem;
            color: #e0e1dd;
            margin-bottom: 20px;
        }
        
        .main-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border: 2px solid #415a77;
        }
        
        .content-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .content-section {
                grid-template-columns: 1fr;
            }
        }
        
        .card {
            background: rgba(65, 90, 119, 0.3);
            border-radius: 10px;
            padding: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid #415a77;
            transition: transform 0.3s ease;
            margin-top: 20px;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        h2 {
            color: #d94f4f;
            margin-bottom: 15px;
            border-bottom: 2px solid #d94f4f;
            padding-bottom: 5px;
        }
        
        h3 {
            color: #b96e46;
            margin: 15px 0 10px;
        }
        
        ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        
        .specs-table th, .specs-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .specs-table th {
            background-color: rgba(255, 107, 107, 0.2);
            color: #b96e46;
        }
        
        .specs-table tr:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .generations {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .gen-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 15px;
            transition: transform 0.3s ease;
        }
        
        .gen-card:hover {
            transform: translateY(-5px);
        }
        
        .gen-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .button-back-to-price-list {
            background: linear-gradient(to right, #3e89df, #340ee0);
            color: rgb(0, 0, 0);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
        }

        .button-back-to-price-list:hover{
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(236, 13, 13, 0.4);
        }

        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #909696;
        }
        
        .highlight {
            color: #d94f4f;
            font-weight: bold;
        }
        
        .model-badge {
            display: inline-block;
            background: linear-gradient(to right, #ff0000, #cc0000);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.9rem;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }
        
        @media (max-width: 600px) {
            .comparison {
                grid-template-columns: 1fr;
            }
        }
        
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 15px;
        }
        
        @media (max-width: 500px) {
            .pros-cons {
                grid-template-columns: 1fr;
            }
        }
        
        .pros {
            background: rgba(46, 204, 113, 0.1);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #2ecc71;
        }
        
        .cons {
            background: rgba(231, 76, 60, 0.1);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #e74c3c;
        }
        
        .nav-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 1px solid #415a77;
        }
        
        .tab {
            padding: 10px 20px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
        }
        
        .tab.active {
            border-bottom: 3px solid #ff6b6b;
            color: #ff6b6b;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }