.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.col-lg-4,
.col-lg-8 {
    position: relative;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

.terms-section {
    padding: 4rem 0 6rem;
}

.terms-section .container {
    max-width: 1400px;
}

.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.terms-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.terms-hero .hero-badge i {
    font-size: 1.2rem;
}

.terms-hero .hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.terms-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.terms-hero .meta-item i {
    color: var(--primary-color);
}

.terms-nav {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

@media (min-width: 992px) {
    .terms-nav {
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        scrollbar-width: none; 
        -ms-overflow-style: none; 
    }

    .terms-nav::-webkit-scrollbar {
        display: none; 
    }
}

.terms-nav h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-nav h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.terms-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav .nav-list li {
    margin-bottom: 0.5rem;
}

.terms-nav .nav-list li.sub-item {
    padding-left: 1.5rem;
}

.terms-nav .nav-list li.sub-item .nav-link {
    font-size: 0.9rem;
    opacity: 0.9;
}

.terms-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.terms-nav .nav-link i {
    font-size: 0.9rem;
    width: 20px;
    transition: all 0.3s ease;
}

.terms-nav .nav-link:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.terms-nav .nav-link.active {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

.terms-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.terms-item {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.terms-item:last-child {
    margin-bottom: 0;
}

.term-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.term-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.terms-item h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.terms-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.terms-item p:last-child {
    margin-bottom: 0;
}

.terms-sub-item {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.03);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
}

.sub-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.terms-sub-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.terms-sub-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.alert-box {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-box i {
    font-size: 1.5rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.alert-box p {
    margin: 0;
    flex: 1;
}

.alert-box.warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.alert-box.warning i {
    color: #fbbf24;
}

.alert-box.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-box.danger i {
    color: #ef4444;
}

.alert-box.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.alert-box.info i {
    color: #3b82f6;
}

.info-box {
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.info-box p {
    margin: 0;
    flex: 1;
    color: var(--text-secondary);
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-box a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.time-block {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 1.5rem 0;
}

.time-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.time-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.time-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.time-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.time-label {
    font-weight: 600;
    color: var(--text-primary);
}

.time-value {
    color: var(--primary-color);
    font-weight: 500;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5865F2;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(88, 101, 242, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.discord-link:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
}

.discord-link i {
    font-size: 1.2rem;
}

.terms-footer {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.terms-footer h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.terms-footer p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.terms-footer .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.green-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
}

.orange-gradient {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cyan-gradient {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.red-gradient {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.indigo-gradient {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.teal-gradient {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.pink-gradient {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.yellow-gradient {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

@media (max-width: 992px) {
    .terms-nav {
        position: static;
        margin-bottom: 2rem;
        max-height: none;
    }

    .terms-content {
        padding: 2rem;
    }

    .terms-hero .hero-title {
        font-size: 3rem;
    }

    .terms-item h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 7rem 0 3rem;
    }

    .terms-hero .hero-title {
        font-size: 2.5rem;
    }

    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .terms-hero .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .terms-content {
        padding: 1.5rem;
    }

    .terms-item {
        margin-bottom: 3rem;
    }

    .terms-item h2 {
        font-size: 1.5rem;
    }

    .terms-sub-item {
        padding: 1.5rem;
    }

    .time-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .terms-footer {
        padding: 2rem 1.5rem;
    }

    .terms-footer h3 {
        font-size: 1.5rem;
    }

    .page-hero {
        padding: 6rem 0 3rem;
    }
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.privacy-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.privacy-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius-md);
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .contact-info {
        padding: 1.5rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

.terms-footer .btn {
    font-size: 1rem;
    padding: 0.85rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-footer .btn i {
    font-size: 1.2rem;
}

.section-bg {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.02) 50%, transparent 100%);
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    pointer-events: none;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fancy-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.htb-content {
    text-align: center;
    margin-bottom: 4rem;
}

.htb-item-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.story-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    position: relative;
}

.story-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story-image:hover::before {
    opacity: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem 0;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    text-align: justify;
    position: relative;
    padding-left: 1.5rem;
}

.story-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background: linear-gradient(180deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.story-content p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
}

.story-content p:first-child::before {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    height: 100%;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    border-color: var(--primary-color);
}

.member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-position {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius-md);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.member-social .social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.member-social .social-link i {
    font-size: 1.1rem;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.ddos-hero {
    background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    padding: 9rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.ddos-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

.ddos-hero .hero-badge {
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ddos-hero .hero-title {
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ddos-hero .hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.protection-diagram {
    margin: 4rem 0;
}

.diagram-container {
    position: relative;
    background: transparent;
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: diagramEntrance 1s ease-out 0.6s both;
    display: block !important;
    grid-template-columns: none !important;
    justify-content: initial !important;
    gap: 0 !important;
    align-items: initial !important;
}

@keyframes diagramEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.diagram-container:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
}

.diagram-container img,
.diagram-container svg {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: all 0.5s ease;
}

.diagram-container:hover img,
.diagram-container:hover svg {
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
}

.diagram-description {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.diagram-description h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.diagram-description h4 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.diagram-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.tech-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.tech-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.tech-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover .tech-icon::after {
    opacity: 1;
    animation: shimmer 1.5s ease infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

.tech-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tech-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.features-grid-ddos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card-ddos {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-ddos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-lg);
}

.feature-card-ddos:hover::before {
    opacity: 1;
}

.feature-card-ddos:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.feature-check {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-check i {
    color: #10b981;
    font-size: 1.5rem;
}

.feature-shield {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-shield i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-card-ddos.highlight {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
}

.feature-card-ddos.highlight:hover {
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.feature-card-ddos h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.feature-card-ddos p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .diagram-container {
        padding: 2.5rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .ddos-hero {
        padding: 7rem 0 4rem;
    }

    .ddos-hero .hero-title {
        font-size: 2.5rem;
    }

    .ddos-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .diagram-container {
        padding: 1.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-card {
        padding: 2rem;
    }

    .features-grid-ddos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ddos-hero {
        padding: 6rem 0 3rem;
    }

    .ddos-hero .hero-title {
        font-size: 2rem;
    }

    .diagram-container {
        padding: 1.5rem;
    }

    .tech-card,
    .feature-card-ddos {
        padding: 1.5rem;
    }
}

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

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-icon::after {
    opacity: 1;
    animation: shimmer 1.5s ease infinite;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-suffix {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.why-choose-us {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.why-choose-title i {
    color: var(--primary-color);
    font-size: 2rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px 0 0 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-card:hover {
    transform: translateX(5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.reason-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reason-content h4 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.reason-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

.section-cta .btn {
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 0.6s ease-out;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .why-choose-us {
        padding: 2rem;
    }

    .why-choose-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .reason-card {
        flex-direction: column;
        gap: 1rem;
    }

    .reason-number {
        font-size: 2rem;
    }

    .section-cta .btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

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

    .why-choose-title {
        font-size: 1.5rem;
    }

    .reason-card {
        padding: 1.5rem;
    }
}

.page-hero .hero-badge i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content {
        padding: 1.5rem 0;
    }

    .story-content p {
        font-size: 1.05rem;
        text-align: left;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-bg {
        padding: 4rem 0;
    }

    .htb-content {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .story-container {
        gap: 2.5rem;
    }

    .story-content {
        padding: 1rem 0;
    }

    .story-content p {
        font-size: 1rem;
        line-height: 1.8;
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }

    .story-content p::before {
        width: 3px;
    }

    .story-content p:first-child {
        font-size: 1.1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .member-image {
        height: 300px;
    }

    .member-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .fancy-separator {
        width: 60px;
        height: 3px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .member-image {
        height: 250px;
    }
}

.server-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.server-option {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.server-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.server-option:hover::before {
    transform: scaleX(1);
}

.server-option:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--primary-color);
}

.server-option-logo {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.server-option-logo img {
    max-height: 55px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.server-option-specs {
    display: flex;
    flex: 1;
    gap: 3rem;
    align-items: center;
}

.spec-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.spec-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
}

.gallery-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .server-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 2rem;
    }

    .server-option:hover {
        transform: translateX(0) translateY(-5px);
    }

    .server-option-logo {
        width: 120px;
        height: 60px;
    }

    .server-option-logo img {
        max-height: 45px;
        max-width: 100px;
    }

    .server-option-specs {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .spec-column {
        flex: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .server-option {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .server-option-logo {
        width: 100px;
        height: 50px;
    }

    .server-option-logo img {
        max-height: 40px;
        max-width: 90px;
    }

    .server-option-specs {
        gap: 1.25rem;
    }

    .spec-title {
        font-size: 0.8rem;
    }

    .spec-value {
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-icon {
        width: 60px;
        height: 60px;
    }

    .gallery-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .server-option {
        padding: 1.25rem;
    }

    .server-option-specs {
        gap: 1rem;
    }

    .server-option-logo {
        width: 90px;
        height: 45px;
    }

    .server-option-logo img {
        max-height: 35px;
        max-width: 80px;
    }
}

.protection-diagram {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.diagram-container {
    display: grid;
    grid-template-columns: 150px 120px 120px 200px 120px 150px;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
}

.diagram-container::before {
    content: '';
    position: absolute;
    left: 160px;
    right: 160px;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 100%
    );
    z-index: 0;
}

.traffic-sources {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
}

.traffic-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid;
    font-size: 0.9rem;
    position: relative;
}

.traffic-item::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    width: 2rem;
    height: 2px;
    border-top: 2px dashed;
}

.traffic-item.legitimate {
    border-color: rgba(16, 185, 129, 0.3);
}

.traffic-item.legitimate::after {
    border-color: rgba(16, 185, 129, 0.5);
}

.traffic-item.attack {
    border-color: rgba(239, 68, 68, 0.3);
}

.traffic-item.attack::after {
    border-color: rgba(239, 68, 68, 0.5);
}

.traffic-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.traffic-item.legitimate .traffic-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.traffic-item.attack .traffic-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.protection-layer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.protection-layer:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.layer-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary-color);
}

.layer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.protection-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.core-icon {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.core-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.core-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.diagram-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.attack-dot {
    background: #ef4444;
}

.legitimate-dot {
    background: #10b981;
}

.shield-dot {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.filter-dot {
    background: rgba(139, 92, 246, 0.5);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.tech-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    border-color: var(--primary-color);
}

.tech-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.tech-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tech-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.features-grid-ddos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-card-ddos {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card-ddos:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.feature-check {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.feature-shield {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
    border: 1px solid rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1.5rem;
}

.feature-card-ddos h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.feature-card-ddos p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.feature-card-ddos.highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.05));
    border-color: rgba(251, 191, 36, 0.3);
}

.feature-card-ddos.highlight:hover {
    border-color: #fbbf24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

@media (max-width: 1200px) {
    .diagram-container {
        grid-template-columns: 130px 100px 100px 160px 100px 130px;
        gap: 1.5rem;
    }

    .core-icon {
        width: 140px;
        height: 140px;
    }

    .core-icon img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 992px) {
    .diagram-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diagram-container::before {
        display: none;
    }

    .traffic-sources {
        order: 1;
    }

    .protection-layer.router {
        order: 2;
    }

    .protection-layer.xdp {
        order: 3;
    }

    .protection-core {
        order: 4;
    }

    .protection-layer.proxy {
        order: 5;
    }

    .protection-layer.server {
        order: 6;
    }

    .traffic-item::after {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .protection-diagram {
        padding: 2rem 1.5rem;
    }

    .core-icon {
        width: 120px;
        height: 120px;
    }

    .core-icon img {
        width: 60px;
        height: 60px;
    }

    .diagram-legend {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .tech-card {
        padding: 2rem;
    }

    .tech-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .features-grid-ddos {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .diagram-legend {
        font-size: 0.85rem;
    }

    .tech-card h3 {
        font-size: 1.3rem;
    }

    .tech-card p {
        font-size: 1rem;
    }
}

.fivem-stats-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.03) 50%, 
        transparent 100%);
    position: relative;
}

.fivem-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(139, 92, 246, 0.2), 
        transparent);
}

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

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15), 
        rgba(236, 72, 153, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.choose-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInScale 0.6s ease-out both;
}

.choose-card:nth-child(1) { animation-delay: 0.5s; }
.choose-card:nth-child(2) { animation-delay: 0.6s; }
.choose-card:nth-child(3) { animation-delay: 0.7s; }
.choose-card:nth-child(4) { animation-delay: 0.8s; }
.choose-card:nth-child(5) { animation-delay: 0.9s; }
.choose-card:nth-child(6) { animation-delay: 1s; }

.choose-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.1), 
        transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.5s ease;
}

.choose-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.choose-card:hover::after {
    transform: translate(30%, -30%) scale(1.5);
    opacity: 0.3;
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15), 
        rgba(236, 72, 153, 0.15));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.choose-card:hover .choose-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.choose-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
}

.badge-highlight {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2), 
        rgba(236, 72, 153, 0.2));
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.graph-card {
    grid-column: 1 / -1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 1.1s both;
}

.graph-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.03) 50%, 
        transparent 100%);
}

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

.graph-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.graph-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.graph-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
    height: 250px;
    margin-top: 3rem;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bar {
    width: 60px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px 8px 0 0;
    position: relative;
    animation: barGrow 1s ease-out 1.5s both;
    box-shadow: 0 -5px 20px rgba(139, 92, 246, 0.3);
}

@keyframes barGrow {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bar-item:nth-child(1) .bar { height: 180px; animation-delay: 1.5s; }
.bar-item:nth-child(2) .bar { height: 220px; animation-delay: 1.6s; }
.bar-item:nth-child(3) .bar { height: 200px; animation-delay: 1.7s; }
.bar-item:nth-child(4) .bar { height: 240px; animation-delay: 1.8s; }

.bar-value {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.bar-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .graph-bars {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .fivem-stats-section {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .stat-card {
        padding: 2rem;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .choose-card {
        padding: 2rem;
    }

    .graph-card {
        padding: 2rem;
    }

    .graph-bars {
        height: 200px;
        gap: 1rem;
    }

    .bar {
        width: 50px;
    }

    .bar-item:nth-child(1) .bar { height: 140px; }
    .bar-item:nth-child(2) .bar { height: 170px; }
    .bar-item:nth-child(3) .bar { height: 160px; }
    .bar-item:nth-child(4) .bar { height: 190px; }

    .bar-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .graph-bars {
        gap: 0.75rem;
    }

    .bar {
        width: 40px;
    }

    .bar-value {
        font-size: 1rem;
        top: -30px;
    }
}

.contact-hero {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
}

.contact-section {
    padding: 5rem 0;
}

.contact-info-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    height: 100%;
    position: sticky;
    top: 100px;
}

.contact-info-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-sidebar h3 i {
    color: var(--primary-color);
}

.sidebar-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 107, 53, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.email-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.15));
    color: #3b82f6;
}

.phone-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    color: #10b981;
}

.discord-icon {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(71, 82, 196, 0.15));
    color: #5865F2;
}

.method-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.method-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.method-link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

.method-link i {
    font-size: 0.85rem;
}

.support-hours {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05), 
        rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.support-hours h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-hours h4 i {
    color: var(--primary-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.hours-item.highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-primary);
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.form-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B9DC3' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.form-footer .btn {
    align-self: flex-start;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.form-note i {
    color: var(--primary-color);
}

.form-message {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-message i {
    font-size: 1.2rem;
}

.contact-faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.03) 50%, 
        transparent 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.15), 
        rgba(139, 92, 246, 0.15));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-card:hover .faq-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.faq-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 992px) {
    .contact-info-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-info-sidebar {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }

    .contact-faq-section {
        padding: 3rem 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .method-icon {
        margin: 0 auto;
    }
}

.dedicated-servers-section {
    padding: 5rem 0;
}

.servers-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.servers-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.sidebar-header h3 i {
    color: var(--primary-color);
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.filter-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 1rem;
}

.filter-results i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.filter-results span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.btn-reset {
    width: 100%;
}

.servers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.server-card-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.server-card-simple:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.server-main {
    flex: 1;
}

.server-info {
    margin-bottom: 1.5rem;
}

.server-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.server-name i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.server-deployment {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.server-deployment i {
    color: var(--primary-color);
}

.server-specs-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.spec-item-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.spec-item-inline i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
}

.spec-item-inline .spec-label {
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 60px;
}

.spec-item-inline .spec-value {
    color: var(--text-primary);
    font-weight: 500;
}

.spec-item-inline.gpu-spec {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.server-price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--radius-lg);
    min-width: 200px;
    position: relative;
}

.price-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.price-original {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.setup-info {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.setup-free {
    color: #10b981;
    font-weight: 700;
}

.setup-paid {
    color: var(--text-secondary);
    font-weight: 600;
}

.btn-order {
    width: 100%;
    padding: 0.875rem 1.5rem;
}

.loading-state,
.error-state,
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.loading-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ef4444;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .servers-layout {
        grid-template-columns: 260px 1fr;
    }

    .server-specs-inline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .dedicated-servers-section {
        padding: 3rem 0;
    }

    .servers-layout {
        grid-template-columns: 1fr;
    }

    .servers-sidebar {
        position: static;
    }

    .server-card-simple {
        flex-direction: column;
        align-items: stretch;
    }

    .server-price-section {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .servers-sidebar {
        padding: 1.5rem;
    }

    .server-card-simple {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .server-name {
        font-size: 1.2rem;
    }

    .server-specs-inline {
        grid-template-columns: 1fr;
    }

    .price-current {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .server-name {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .spec-item-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label i {
    color: var(--primary-color);
}

.filter-select {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.filter-results {
    font-weight: 600;
    color: var(--text-secondary);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.server-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.server-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.server-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05), 
        rgba(139, 92, 246, 0.05));
}

.server-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.server-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    z-index: 2;
}

.server-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    z-index: 2;
}

.server-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    width: fit-content;
}

.server-badge i {
    font-size: 0.9rem;
}

.server-header {
    text-align: center;
    margin-bottom: 2rem;
}

.server-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.server-card:hover .server-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.server-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.deployment-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.deployment-time i {
    color: var(--primary-color);
}

.server-specs {
    flex: 1;
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.875rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.spec-row:hover {
    background: rgba(255, 107, 53, 0.05);
}

.spec-row.highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 100px;
}

.spec-label i {
    color: var(--primary-color);
    width: 18px;
}

.spec-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
}

.server-pricing {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.price-original {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.setup-fee {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.fee-free {
    color: #10b981;
    font-weight: 700;
}

.fee-amount {
    color: var(--text-secondary);
    font-weight: 600;
}

.fee-original {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 0.85rem;
}

.server-promotion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.server-promotion i {
    font-size: 1rem;
}

.btn-configure {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.loading-state,
.error-state,
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-secondary);
}

.loading-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ef4444;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .servers-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
}

@media (max-width: 992px) {
    .dedicated-servers-section {
        padding: 3rem 0;
    }

    .servers-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        width: 100%;
    }

    .servers-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .servers-filters {
        padding: 1.5rem;
    }

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

    .server-card {
        padding: 1.5rem;
    }

    .price-current {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .server-header h3 {
        font-size: 1.2rem;
    }

    .server-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

.config-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.config-form-area {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.config-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step:hover {
    background: rgba(255, 107, 53, 0.05);
}

.step.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(139, 92, 246, 0.1));
    border-color: var(--primary-color);
}

.step.completed .step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.step-info {
    flex: 1;
}

.step-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.config-content {
    min-height: 500px;
    margin-bottom: 2rem;
}

.step-container {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-heading i {
    color: var(--primary-color);
}

.step-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.options-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.option-card:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-3px);
}

.option-card:hover::before {
    transform: scaleX(1);
}

.option-card.selected {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.option-card.selected::before {
    transform: scaleX(1);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(139, 92, 246, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.option-card.selected .option-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.option-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.option-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.option-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.spec-item i {
    color: var(--primary-color);
    width: 16px;
}

.option-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.option-card.selected .option-check {
    opacity: 1;
    transform: scale(1);
}

.addon-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 0.5rem;
}

.config-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.config-navigation .btn {
    flex: 1;
    max-width: 200px;
}

.config-summary {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.summary-header h3 i {
    color: var(--primary-color);
}

.summary-content {
    margin-bottom: 2rem;
}

.summary-empty {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-secondary);
}

.summary-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.summary-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(139, 92, 246, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.summary-details {
    flex: 1;
}

.summary-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.summary-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.summary-pricing {
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.price-item span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.price-total span:first-child {
    color: var(--text-primary);
}

.price-total span:last-child {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-order {
    width: 100%;
    margin-bottom: 1.5rem;
}

.btn-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.summary-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feature-badge i {
    color: var(--primary-color);
}

.loading-state,
.error-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.loading-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ef4444;
}

@media (max-width: 1200px) {
    .config-wrapper {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 992px) {
    .config-wrapper {
        grid-template-columns: 1fr;
    }

    .config-summary {
        position: static;
    }

    .config-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .custom-config-section {
        padding: 3rem 0;
    }

    .config-form-area {
        padding: 1.5rem;
    }

    .config-summary {
        padding: 1.5rem;
    }

    .config-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .step {
        padding: 0.75rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-desc {
        font-size: 0.8rem;
    }

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

    .config-navigation {
        flex-direction: column;
    }

    .config-navigation .btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .step-heading {
        font-size: 1.5rem;
    }

    .option-card {
        padding: 1.25rem;
    }
}