@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #03030f;
    color: #ededee;
    line-height: 1.5;
}

.sp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 3, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.sp-navbar.scrolled {
    background: #03030f;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.sp-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sp-logo-img {
    height: 36px;
    width: auto;
}

.sp-nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.sp-nav-links li a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.sp-nav-links li a:hover,
.sp-nav-links li a.sp-nav-active {
    color: #ffffff;
}

.sp-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.sp-hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.sp-nav-mobile {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #03030f;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: 0.3s ease;
    z-index: 999;
    list-style: none;
}

.sp-nav-mobile.active {
    left: 0;
}

.sp-nav-mobile li {
    margin: 20px 0;
}

.sp-nav-mobile li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.sp-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #03030f 0%, #0c0c20 100%);
    overflow: hidden;
}
.sp-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(100, 100, 255, 0.08), transparent 60%),
                url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.sp-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sp-hero-left h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.sp-hero-left h1 span {
    background: linear-gradient(135deg, #ffffff, #8888ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-hero-left p {
    color: #8080a0;
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.sp-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sp-btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #03030f;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.3s;
}

.sp-btn-primary:hover {
    transform: translateY(-2px);
    background: #ccccff;
}

.sp-btn-outline {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 500;
    transition: all 0.3s;
}

.sp-btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.sp-hero-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    text-align: center;
}

.sp-hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.sp-hero-stat span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.sp-hero-stat small {
    font-size: 13px;
    color: #606080;
}

.sp-ticker {
    background: #0c0c18;
    padding: 12px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sp-ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: spTicker 20s linear infinite;
}

.sp-ticker-inner span {
    display: inline-block;
    padding: 0 32px;
    font-size: 13px;
    font-weight: 500;
    color: #606080;
    letter-spacing: 0.5px;
}

@keyframes spTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sp-warning {
    margin: 50px auto;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #8888ff;
    padding: 20px 28px;
}

.sp-warning-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sp-warning-icon {
    font-size: 36px;
}

.sp-warning-content {
    flex: 1;
}

.sp-warning-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ccccff;
}

.sp-warning-content p {
    color: #707090;
    font-size: 13px;
    line-height: 1.5;
}

.sp-warning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.sp-warning-tags span {
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #8888ff;
}

.sp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.sp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sp-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sp-section-subtitle {
    color: #606080;
    font-size: 15px;
}

.sp-featured {
    padding: 80px 0;
}

.sp-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-featured-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
}

.sp-featured-card:hover {
    transform: translateY(-4px);
    border-color: rgba(136, 136, 255, 0.3);
    background: rgba(136, 136, 255, 0.02);
}

.sp-featured-rank {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
}

.sp-featured-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sp-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.sp-featured-card:hover .sp-featured-image img {
    transform: scale(1.03);
}

.sp-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.sp-featured-card:hover .sp-featured-overlay {
    opacity: 1;
}

.sp-featured-play {
    background: #ffffff;
    color: #03030f;
    padding: 8px 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.sp-featured-info {
    padding: 20px;
    text-align: center;
}

.sp-featured-info h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sp-featured-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #8888ff;
}

.sp-featured-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.sp-featured-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sp-showcase {
    padding: 80px 0;
    background: rgba(136, 136, 255, 0.02);
}

.sp-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sp-showcase-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.sp-showcase-item:hover {
    transform: translateY(-3px);
    border-color: rgba(136, 136, 255, 0.3);
}

.sp-showcase-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.sp-showcase-item span {
    display: block;
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #a0a0b0;
}

.sp-showcase-footer {
    text-align: center;
    margin-top: 40px;
}

.sp-view-link {
    display: inline-block;
    color: #a0a0b0;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #a0a0b0;
    padding-bottom: 4px;
    transition: 0.3s;
}

.sp-view-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}
.sp-spotlight {
    padding: 80px 0;
    background: #0c0c18;
}

.sp-spotlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.sp-spotlight-image {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.sp-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.sp-spotlight-card:hover .sp-spotlight-image img {
    transform: scale(1.03);
}

.sp-spotlight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #8888ff;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.sp-spotlight-content {
    padding: 40px 40px 40px 0;
}

.sp-spotlight-category {
    display: inline-block;
    background: rgba(136, 136, 255, 0.1);
    color: #8888ff;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.sp-spotlight-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.sp-spotlight-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-spotlight-stat span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.sp-spotlight-stat small {
    font-size: 11px;
    color: #707090;
}

.sp-spotlight-content p {
    color: #8080a0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.sp-spotlight-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.sp-spotlight-features span {
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #a0a0b0;
}

.sp-spotlight-btn {
    display: inline-block;
    background: #ffffff;
    color: #03030f;
    text-decoration: none;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.sp-spotlight-btn:hover {
    background: #ccccff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .sp-spotlight-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .sp-spotlight-image {
        min-height: 300px;
    }
    
    .sp-spotlight-content {
        padding: 30px;
    }
    
    .sp-spotlight-content h2 {
        font-size: 26px;
    }
    
    .sp-spotlight-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .sp-spotlight-stat span {
        font-size: 18px;
    }
}

@media (max-width: 550px) {
    .sp-spotlight {
        padding: 50px 0;
    }
    
    .sp-spotlight-image {
        min-height: 220px;
    }
    
    .sp-spotlight-content {
        padding: 20px;
    }
    
    .sp-spotlight-content h2 {
        font-size: 22px;
    }
    
    .sp-spotlight-stats {
        gap: 15px;
    }
    
    .sp-spotlight-stat span {
        font-size: 16px;
    }
    
    .sp-spotlight-features span {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .sp-spotlight-btn {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}

.sp-spotlight-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sp-about {
    padding: 80px 0;
    background: rgba(136, 136, 255, 0.02);
}

.sp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sp-about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.sp-about-content p {
    color: #707090;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sp-about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.sp-about-feature {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #a0a0b0;
}

.sp-about-quote {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    text-align: center;
}

.sp-quote-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
    color: #c0c0e0;
}

.sp-quote-author {
    color: #8888ff;
    font-weight: 500;
}

.sp-contact {
    padding: 80px 0;
}

.sp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.sp-contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
}

.sp-contact-form h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 28px;
}

.sp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.sp-contact-form input,
.sp-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 16px;
}

.sp-contact-form input:focus,
.sp-contact-form textarea:focus {
    outline: none;
    border-color: #8888ff;
}

.sp-submit-btn {
    width: 100%;
    background: #ffffff;
    color: #03030f;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.sp-submit-btn:hover {
    background: #ccccff;
    transform: translateY(-2px);
}

.sp-contact-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
}

.sp-contact-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 28px;
}

.sp-contact-item {
    margin-bottom: 24px;
}

.sp-contact-label {
    font-size: 11px;
    color: #8888ff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sp-contact-value {
    font-size: 15px;
    font-weight: 500;
}

.sp-footer {
    background: #03030f;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.sp-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.sp-footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.sp-footer-item {
    flex: 1;
    min-width: 200px;
}

.sp-footer-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #a0a0b0;
}

.sp-footer-item p {
    color: #606080;
    font-size: 13px;
    line-height: 1.6;
}

.sp-footer-links {
    list-style: none;
}

.sp-footer-links li {
    margin-bottom: 10px;
}

.sp-footer-links li a {
    color: #606080;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.sp-footer-links li a:hover {
    color: #ffffff;
}

.sp-responsible-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sp-responsible-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgb(255, 255, 255);
    padding: 6px 14px;
    text-decoration: none;
}

.sp-responsible-item img {
    height: 32px;
    width: auto;
}

.sp-responsible-item span {
    color: #4e4e4e;
    font-size: 11px;
    font-weight: 500;
}

.sp-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
    color: #505070;
}

.sp-age-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.sp-age-modal-content {
    background: #03030f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.sp-age-modal-icon {
    font-size: 60px;
    margin-bottom: 16px;
}

.sp-age-modal-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.sp-age-modal-content p {
    color: #707090;
    font-size: 14px;
}

.sp-age-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}

.sp-age-btn {
    padding: 12px 28px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

.sp-confirm {
    background: #ffffff;
    color: #03030f;
}

.sp-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.sp-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #0c0c18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.4s;
    max-width: 700px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: calc(100% - 40px);
}

.sp-cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.sp-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.sp-cookie-text {
    color: #707090;
    font-size: 13px;
    flex: 1;
}

.sp-cookie-text a {
    color: #8888ff;
    text-decoration: none;
}

.sp-cookie-buttons {
    display: flex;
    gap: 12px;
}

.sp-cookie-btn {
    padding: 8px 20px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 13px;
}

.sp-cookie-btn.sp-accept {
    background: #ffffff;
    color: #03030f;
}

.sp-cookie-btn.sp-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.sp-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.sp-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sp-mb-15 {
    margin-bottom: 15px;
}

.sp-contact-form input[type="tel"] {
    margin-bottom: 15px;
}

@media (max-width: 1100px) {
    .sp-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .sp-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .sp-hero-buttons {
        justify-content: center;
    }
    
    .sp-hero-left h1 {
        font-size: 48px;
    }
    
    .sp-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sp-about-grid {
        grid-template-columns: 1fr;
    }
    
    .sp-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .sp-spotlight-grid {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 768px) {
    .sp-nav-links {
        display: none;
    }
    
    .sp-hamburger {
        display: flex;
    }
    
    .sp-nav-container {
        padding: 12px 20px;
    }
    
    .sp-hero-left h1 {
        font-size: 36px;
    }
    
    .sp-hero-left p {
        font-size: 15px;
    }
    
    .sp-btn-primary, .sp-btn-outline {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .sp-section-title {
        font-size: 26px;
    }
    
    .sp-featured-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .sp-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .sp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .sp-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sp-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 550px) {
    .sp-hero-left h1 {
        font-size: 32px;
    }
    
    .sp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sp-warning-container {
        flex-direction: column;
        text-align: center;
    }
}

.sp-contact-hero {
    padding: 140px 0 60px;
    background: linear-gradient(145deg, rgba(3, 3, 15, 0.85), rgba(12, 12, 32, 0.9)), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.sp-contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.sp-contact-hero-content p {
    color: #8080a0;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.sp-contact-page {
    padding: 60px 0 80px;
}

.sp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.sp-contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
}

.sp-contact-form h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 28px;
}

.sp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.sp-contact-form input,
.sp-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 16px;
}

.sp-contact-form input:focus,
.sp-contact-form textarea:focus {
    outline: none;
    border-color: #8888ff;
}

.sp-submit-btn {
    width: 100%;
    background: #ffffff;
    color: #03030f;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.sp-submit-btn:hover {
    background: #ccccff;
    transform: translateY(-2px);
}

.sp-contact-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
}

.sp-contact-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 28px;
}

.sp-contact-item {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sp-contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sp-contact-label {
    font-size: 11px;
    color: #8888ff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sp-contact-value {
    font-size: 15px;
    font-weight: 500;
    color: #ededee;
}

.sp-faq {
    padding: 80px 0;
    background: rgba(136, 136, 255, 0.02);
}

.sp-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.sp-faq-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sp-faq-header p {
    color: #8080a0;
    font-size: 15px;
}

.sp-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.sp-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 28px;
    transition: all 0.3s;
}

.sp-faq-item:hover {
    border-color: rgba(136, 136, 255, 0.3);
    transform: translateY(-2px);
}

.sp-faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.sp-faq-item p {
    color: #8080a0;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .sp-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sp-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sp-contact-hero-content h1 {
        font-size: 36px;
    }
    
    .sp-faq-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .sp-contact-hero {
        padding: 110px 0 40px;
    }
    
    .sp-contact-page {
        padding: 40px 0 60px;
    }
    
    .sp-contact-form,
    .sp-contact-info {
        padding: 28px;
    }
    
    .sp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .sp-faq {
        padding: 50px 0;
    }
    
    .sp-faq-item {
        padding: 20px;
    }
    
    .sp-faq-item h4 {
        font-size: 16px;
    }
}

@media (max-width: 550px) {
    .sp-contact-hero-content h1 {
        font-size: 28px;
    }
    
    .sp-contact-hero-content p {
        font-size: 14px;
    }
    
    .sp-contact-form h2,
    .sp-contact-info h2 {
        font-size: 20px;
    }
    
    .sp-faq-header h2 {
        font-size: 24px;
    }
}

.sp-allgames-hero {
    padding: 140px 0 60px;
    background: linear-gradient(145deg, rgba(3, 3, 15, 0.85), rgba(12, 12, 32, 0.9)), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.sp-allgames-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sp-allgames-hero-content p {
    color: #8080a0;
    font-size: 16px;
}

.sp-allgames {
    padding: 60px 0 80px;
}

.sp-allgames-header {
    text-align: center;
    margin-bottom: 40px;
}

.sp-allgames-count {
    display: inline-block;
    background: rgba(136, 136, 255, 0.1);
    padding: 8px 24px;
    font-size: 14px;
    color: #8888ff;
    border-radius: 0px;
    letter-spacing: 0.5px;
}

.sp-allgames-count span {
    font-weight: 700;
    font-size: 18px;
}

.sp-allgames-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sp-allgames-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.sp-allgames-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(136, 136, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.sp-allgames-card:hover::before {
    left: 100%;
}

.sp-allgames-card:hover {
    transform: translateY(-6px);
    border-color: rgba(136, 136, 255, 0.4);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.sp-allgames-card-link {
    display: block;
    text-decoration: none;
}

.sp-allgames-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.sp-allgames-card:hover .sp-allgames-image img {
    transform: scale(1.08);
}

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

.sp-allgames-card:hover .sp-allgames-overlay {
    opacity: 1;
}

.sp-allgames-play {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #03030f;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sp-allgames-play:hover {
    transform: scale(1.1);
    background: #8888ff;
    color: #ffffff;
}

.sp-allgames-info {
    padding: 18px;
    text-align: center;
}

.sp-allgames-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.sp-allgames-card:hover .sp-allgames-info h3 {
    color: #8888ff;
}

.sp-allgames-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sp-allgames-btn:hover {
    background: #ffffff;
    color: #03030f;
    border-color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .sp-allgames-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .sp-allgames-hero {
        padding: 110px 0 40px;
    }
    
    .sp-allgames-hero-content h1 {
        font-size: 36px;
    }
    
    .sp-allgames {
        padding: 40px 0 60px;
    }
    
    .sp-allgames-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .sp-allgames-image {
        height: 200px;
    }
    
    .sp-allgames-count {
        font-size: 12px;
        padding: 6px 18px;
    }
}

@media (max-width: 550px) {
    .sp-allgames-hero-content h1 {
        font-size: 28px;
    }
    
    .sp-allgames-hero-content p {
        font-size: 14px;
    }
    
    .sp-allgames-info h3 {
        font-size: 15px;
    }
    
    .sp-allgames-btn {
        padding: 6px 20px;
        font-size: 12px;
    }
}

.sp-game-arena {
    padding: 100px 0 80px;
    background: #03030f;
    min-height: 100vh;
}

.sp-game-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.sp-game-alert {
    background: rgba(136, 136, 255, 0.05);
    border-left: 3px solid #8888ff;
    padding: 14px 22px;
    margin-bottom: 25px;
}

.sp-game-alert-bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.sp-game-alert p {
    color: #8080a0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.sp-game-alert strong {
    color: #8888ff;
    font-weight: 600;
}

.sp-game-frame-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    background: #0c0c18;
    border: 1px solid rgba(136, 136, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sp-game-frame-wrapper:hover {
    border-color: #8888ff;
    box-shadow: 0 0 30px rgba(136, 136, 255, 0.1);
}

.sp-game-iframe {
    display: block;
    border: none;
    background: #000;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .sp-game-frame-wrapper {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .sp-game-arena {
        padding: 80px 0 50px;
    }
    
    .sp-game-container {
        padding: 0 20px;
    }
    
    .sp-game-frame-wrapper {
        height: 450px;
    }
    
    .sp-game-alert {
        padding: 12px 18px;
    }
    
    .sp-game-alert p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .sp-game-arena {
        padding: 70px 0 40px;
    }
    
    .sp-game-frame-wrapper {
        height: 350px;
    }
    
    .sp-game-alert {
        padding: 10px 15px;
    }
    
    .sp-game-alert p {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .sp-game-frame-wrapper {
        height: 300px;
    }
}

.sp-top-hero {
     padding: 140px 0 60px;
    background: linear-gradient(145deg, rgba(3, 3, 15, 0.85), rgba(12, 12, 32, 0.9)), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.sp-top-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.sp-top-stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sp-top-stat span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #8888ff;
}

.sp-top-stat small {
    font-size: 12px;
    color: #606080;
}

.sp-top-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sp-top-hero-content p {
    color: #8080a0;
    font-size: 16px;
}

.sp-top-grid {
    padding: 60px 0 80px;
}

.sp-top-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sp-top-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.sp-top-card:hover {
    transform: translateY(-6px);
    border-color: rgba(136, 136, 255, 0.3);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.sp-top-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 700;
    color: #8888ff;
    z-index: 2;
    border-radius: 0px;
}

.sp-top-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sp-top-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.sp-top-card:hover .sp-top-card-image img {
    transform: scale(1.05);
}

.sp-top-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.sp-top-card:hover .sp-top-card-overlay {
    opacity: 1;
}

.sp-top-card-play {
    background: #ffffff;
    color: #03030f;
    padding: 8px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.sp-top-card-play:hover {
    background: #8888ff;
    color: #ffffff;
}

.sp-top-card-info {
    padding: 18px;
    text-align: center;
}

.sp-top-card-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sp-top-card-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
}

.sp-top-card-plays {
    color: #8888ff;
}

.sp-top-card-rating {
    color: #ffd700;
}

.sp-top-card-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
    width: 100%;
}

.sp-top-card-btn:hover {
    background: #ffffff;
    color: #03030f;
}

@media (max-width: 1100px) {
    .sp-top-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 850px) {
    .sp-top-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sp-top-hero-stats {
        gap: 20px;
    }
    
    .sp-top-stat {
        padding: 10px 18px;
    }
    
    .sp-top-stat span {
        font-size: 22px;
    }
}

@media (max-width: 550px) {
    .sp-top-cards {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .sp-top-hero {
        padding: 110px 0 40px;
    }
    
    .sp-top-hero-content h1 {
        font-size: 36px;
    }
    
    .sp-top-stat span {
        font-size: 20px;
    }
    
    .sp-top-stat small {
        font-size: 10px;
    }
    
    .sp-top-card-image {
        height: 180px;
    }
}
.sp-month-hero {
    padding: 140px 0 60px;
    background: linear-gradient(145deg, rgba(3, 3, 15, 0.85), rgba(12, 12, 32, 0.9)), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.sp-month-badge {
    display: inline-block;
    background: rgba(136, 136, 255, 0.1);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    color: #8888ff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.sp-month-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sp-month-hero-content p {
    color: #8080a0;
    font-size: 16px;
}

.sp-month-showcase {
    padding: 60px 0 80px;
}

.sp-month-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.sp-month-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sp-month-card:hover {
    transform: translateY(-6px);
    border-color: rgba(136, 136, 255, 0.3);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.sp-month-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(136, 136, 255, 0.05), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.sp-month-card:hover::before {
    left: 100%;
}

.sp-month-position {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #8888ff;
    z-index: 2;
}

.sp-month-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sp-month-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.sp-month-card:hover .sp-month-image img {
    transform: scale(1.05);
}

.sp-month-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.sp-month-card:hover .sp-month-overlay {
    opacity: 1;
}

.sp-month-quick {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #03030f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.sp-month-quick:hover {
    background: #8888ff;
    color: #ffffff;
    transform: scale(1.05);
}

.sp-month-info {
    padding: 18px;
    text-align: center;
}

.sp-month-info h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sp-month-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
}

.sp-month-plays {
    color: #8888ff;
}

.sp-month-rating {
    color: #ffd700;
}

.sp-month-trend {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
}

.sp-month-up {
    color: #4ade80;
    font-weight: 600;
}

.sp-month-players {
    color: #8080a0;
}

.sp-month-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    overflow: hidden;
}

.sp-month-progress {
    height: 100%;
    background: #8888ff;
}

.sp-month-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
    width: 100%;
}

.sp-month-btn:hover {
    background: #ffffff;
    color: #03030f;
}

@media (max-width: 900px) {
    .sp-month-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .sp-month-hero {
        padding: 110px 0 40px;
    }
    
    .sp-month-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .sp-month-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 380px;
    }
    
    .sp-month-image {
        height: 180px;
    }
    
    .sp-month-info h3 {
        font-size: 16px;
    }
    
    .sp-month-stats {
        gap: 10px;
        font-size: 11px;
    }
    
    .sp-month-trend {
        gap: 10px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .sp-nav-links {
        display: none;
    }
    
    .sp-hamburger {
        display: flex;
    }
    
    .sp-nav-container {
        padding: 12px 20px;
    }
    
    /* Мобільне меню - з правого боку */
    .sp-nav-mobile {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 280px;
        height: 100vh;
        background: #03030f;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 0 30px 30px;
        transition: right 0.3s ease;
        z-index: 1001;
        list-style: none;
        border-left: 1px solid rgba(136, 136, 255, 0.2);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .sp-nav-mobile.active {
        right: 0;
    }
    
    .sp-nav-mobile li {
        margin: 0 0 20px 0;
        width: 100%;
        text-align: left;
    }
    
    .sp-nav-mobile li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        display: inline-block;
        padding: 8px 0;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .sp-nav-mobile li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #8888ff;
        transition: width 0.3s ease;
    }
    
    .sp-nav-mobile li a:hover::after,
    .sp-nav-mobile li a.sp-nav-active::after {
        width: 30px;
    }
    
    .sp-nav-mobile li a:hover,
    .sp-nav-mobile li a.sp-nav-active {
        color: #8888ff;
        transform: translateX(5px);
    }
    
    /* Оверлей */
    .sp-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .sp-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Анімація гамбургера */
    .sp-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .sp-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .sp-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}