body {
    margin: 0px;
    font-family: 'Manrope', sans-serif;
    background-color: #0a0b0c;
}
.header {
    background-color: #0F1015; 
    height: 300px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
}
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.menu-section {
    background-color: #0c0d11f5; 
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav {
    display: flex;
    gap: 30px;
    margin-left: 250px;
}
a {
    color: #b3b3b3;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
a:hover {
    color: #fff;
    text-decoration: none;
}
.title-block {
    margin-left: 250px;
    margin-bottom: 70px;
}
.title-block h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-transform: uppercase;
}
.minimized {
  width: 35px;
  height: 35px;
  cursor: pointer;
  border-radius: 5px;
}
.title-block h1 .subtitle {
    display: block;
    font-size: 60px;
    margin-top: -5px;
}
.title-block h1 .uptitle {
    font-size: 20px;
}
.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
    margin-right: 250px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 25px;
    height: 25px;
}

.server-button {
    background: linear-gradient(135deg, #667eea 0%, #667eea 100%);
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px #667eea42;
}

.server-button:hover {
    background: linear-gradient(135deg, #667eea 0%, #667eea 100%);
    box-shadow: 0 6px 16px #667eea60
}
.header-image {
    position: absolute;
    right: 200px;
    top: 5%;
    z-index: -1;
}
.character_1 {
    height: 400px;
    position: relative;
    left: 60px;
    z-index: 4;
}
.character_2 {
    height: 400px;
    position: relative;
    left: -110px;
    top: 20px;
    z-index: 3;
}
.character_3 {
    height: 400px;
    position: relative;
    left: -540px;
    z-index: 2;
}
.main-section {
    z-index: 1;
}
.content-area {
    background-color: #0a0b0c;
    position: sticky;
    padding-top: 30px;
}
.table-section {
    margin-left: 250px;
    margin-right: 250px;
    border-radius: 5px;
    position: sticky;
}
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 1000;
}
.dropdown-toggle {
    cursor: pointer;
    position: relative;
}
.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0c0d11f5;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-item:hover {
    background: #13151af5;
    color: #fff;
    padding-left: 25px;
}
.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}
.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}
table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 30px;
}
thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
tbody tr {
    border-bottom: 1px solid #0000001c;
    transition: all 0.3s ease;
    background-color: #0F1015;
}
tbody tr:hover {
    background: #13151af5;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
tbody tr:last-child {
    border-bottom: none;
}
td {
    padding: 16px 15px;
    font-size: 14px;
    color: #e5e5e5;
}
.status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.status.active {
    background: #c6f6d5;
    color: #22543d;
}
.status.pending {
    background: #fef5e7;
    color: #975a16;
}
.status.inactive {
    background: #fed7d7;
    color: #742a2a;
}
.priority {
    font-weight: 600;
}
.priority.high {
    color: #e53e3e;
}
.priority.medium {
    color: #dd6b20;
}
.priority.low {
    color: #49d35b;
}
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    table {
        font-size: 12px;
    }

    th, td {
        padding: 10px 8px;
    }
}
.form_s {display: none}
.skin_1_status {color:#49d35b; font-weight: bold;}
.skin_1_status_off {display: none}
.skin_2_status {color:#49d35b; font-weight: bold;}
.skin_2_status_off {display: none}
.skin_3_status {color:#49d35b; font-weight: bold;}
.skin_3_status_off {display: none}
.skin_4_status {color:#49d35b; font-weight: bold;}
.skin_4_status_off {display: none}
.skin_5_status {color:#49d35b; font-weight: bold;}
.skin_5_status_off {display: none}
.timer {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}
.timer__items {
    display: flex;
    font-size: 48px;
}
.timer__item {
    min-width: 25px;
    margin-left: 10px;
    margin-right: 10px;
}
.timer__item::before {
    content: attr(data-title);
    display: block;
    font-size: 14px;
    order: -1;
}

.timer__item {
    display: flex;
    flex-direction: column-reverse;
}
.timer__result {
    padding: 10px;
    color: #9c27b0;
    font-weight: bold;
}
.timer__items {
  display: flex;
  font-size: 16px;
  color: #979797;
}
.timer__item {
  min-width: 0px;
  margin-left: 0px;
  margin-right: 5px;
  font-size: 16px;
  color: #979797;
}
.timer__item::before {
  content: attr(data-title);
  display: initial;
  bottom: auto;
  font-size: 14px;
}
.timer__items2 {
  display: flex;
  font-size: 16px;
  color: #b7b7b7;
}
.timer__item2 {
  position: relative;
  min-width: 0px;
  margin-left: 0px;
  margin-right: 5px;
  font-size: 16px;
  color: #b7b7b7;
}
.timer__item2::before {
  content: attr(data-title);
  display: initial;
  position: absolute;
  bottom: auto;
  font-size: 14px;
}
.timer__items3 {
  display: flex;
  font-size: 16px;
  color: #b7b7b7;
}
.timer__item3 {
  position: relative;
  min-width: 0px;
  margin-left: 0px;
  margin-right: 5px;
  font-size: 16px;
  color: #b7b7b7;
}
.timer__item3::before {
  content: attr(data-title);
  display: initial;
  position: absolute;
  bottom: auto;
  font-size: 14px;
}
.timer__items4 {
  display: flex;
  font-size: 16px;
  color: #b7b7b7;
}
.timer__item4 {
  position: relative;
  min-width: 0px;
  margin-left: 0px;
  margin-right: 5px;
  font-size: 16px;
  color: #b7b7b7;
}
.timer__item4::before {
  content: attr(data-title);
  display: initial;
  position: absolute;
  bottom: auto;
  font-size: 14px;
}
.timer__items5 {
  display: flex;
  font-size: 16px;
  color: #b7b7b7;
}
.timer__item5 {
  position: relative;
  min-width: 0px;
  margin-left: 0px;
  margin-right: 5px;
  font-size: 16px;
  color: #b7b7b7;
}
.timer__item5::before {
  content: attr(data-title);
  display: initial;
  position: absolute;
  bottom: auto;
  font-size: 14px;
}
.status.active {
    background: linear-gradient(135deg, #667eea 0%, #667eea 100%);
    color: #ffffff;
    transition: all 0.3s ease;
}
.status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.link_buy {
    color: #ffffff
}
.status.active:hover {
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px #667eea42;
}
tbody tr:nth-child(odd) {
    background-color: #0c0d10;
}

tbody tr:nth-child(even) {
    background-color: #0f1015f8;
}
.requirement-content {
    background-color: #0F1015;
    margin-left: 250px;
    margin-right: 250px;
    border-radius: 5px;
    color: #e5e5e5;
    padding-left: 20px;
    padding-top: 1px;
    padding-bottom: 10px;
}
.requirement-content, h1 {
    color: #fff;
}
ol li::marker {
    content: '• ';
    color: #667eea;
}
.link_req {
    text-transform: none;
    color: #fff;
}
.cost {
    color: #60ff57;
}
@media (max-width: 1200px) {
    .header-image {
        right: 50px;
    }
    
    .character_1,
    .character_2,
    .character_3 {
        height: 300px;
    }
    
    nav {
        margin-left: 100px;
    }
    
    .title-block {
        margin-left: 100px;
    }
    
    .right-section {
        margin-right: 100px;
    }
    
    .table-section,
    .requirement-content {
        margin-left: 100px;
        margin-right: 100px;
    }
}

@media (max-width: 992px) {
    .header {
        height: auto;
        min-height: 250px;
    }
    
    .menu-section {
        height: auto;
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
    }
    
    nav {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .title-block {
        margin-left: 50px;
        margin-bottom: 40px;
    }
    
    .title-block h1 {
        font-size: 32px;
    }
    
    .title-block h1 .subtitle {
        font-size: 48px;
    }
    
    .right-section {
        margin-right: 0;
        flex-direction: column;
        gap: 15px;
    }
    
    .header-image {
        display: none;
    }
    
    .table-section,
    .requirement-content {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (max-width: 768px) {
    .title-block {
        margin-left: 20px;
        margin-bottom: 30px;
    }
    
    .title-block h1 {
        font-size: 24px;
    }
    
    .title-block h1 .subtitle {
        font-size: 36px;
    }
    
    .title-block h1 .uptitle {
        font-size: 16px;
    }
    
    .table-section,
    .requirement-content {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    /* Трансформация таблицы в карточки */
    table {
        border: 0;
    }
    
    table thead {
        display: none;
    }
    
    table tbody {
        display: block;
    }
    
    table tbody tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px;
        background-color: #0F1015;
    }
    
    table tbody tr:hover {
        transform: translateY(-2px);
    }
    
    table tbody td {
        display: block;
        text-align: left;
        padding: 10px 0;
        border: none;
        position: relative;
    }
    
    table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #667eea;
        display: block;
        margin-bottom: 5px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Скрываем номер строки на мобильных */
    table tbody td:first-child {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.1);
    }
    
    table tbody td:first-child::before {
        display: none;
    }
    
    /* Изображение скина */
    table tbody td:nth-child(2) {
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 10px;
    }
    
    table tbody td:nth-child(2)::before {
        text-align: center;
    }
    
    .minimized {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
    
    /* Остальные ячейки */
    table tbody td:nth-child(3)::before {
        content: "Владелец:";
    }
    
    table tbody td:nth-child(4)::before {
        content: "Срок действия:";
    }
    
    table tbody td:nth-child(5)::before {
        content: "Дата окончания:";
    }
    
    table tbody td:nth-child(6)::before {
        content: "Статус:";
    }
    
    /* Таймер на мобильных */
    .timer__items {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .requirement-content {
        padding: 15px;
    }
    
    .requirement-content h2 {
        font-size: 22px;
    }
    
    .requirement-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .menu-section {
        padding: 15px 10px;
    }
    
    nav {
        gap: 10px;
        font-size: 12px;
    }
    
    a {
        font-size: 11px;
    }
    
    .title-block h1 {
        font-size: 20px;
    }
    
    .title-block h1 .subtitle {
        font-size: 28px;
    }
    
    .title-block h1 .uptitle {
        font-size: 14px;
    }
    
    .server-button {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .social-icon img {
        width: 20px;
        height: 20px;
    }
    
    .dropdown-menu {
        min-width: 200px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
    
    table tbody tr {
        padding: 12px;
    }
    
    .requirement-content h2 {
        font-size: 20px;
    }
    
    .requirement-content h3 {
        font-size: 16px;
    }
    
    .requirement-content ol {
        padding-left: 20px;
    }
}