:root {
    --primary: #ffc6e7;
    --secondary: #ffe6f7;
    --accent: #ffb7dd;
    --success: #98fb98;
    --error: #ffb3b3;
    --text: #4a4a4a;
    --anemo: #74c2a8;
    --geo: #fab632;
    --electro: #b985dc;
    --hydro: #4cc2f1;
    --pyro: #ef7938;
    --cryo: #9fd6e3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}



.service-card,
.minecraft-card,
.hosting-card,
.contact-form,
nav,
.nav-link,
button,
.button,
.service-button,
.minecraft-button,
.hosting-button,
.submit-button,
.form-group input,
.form-group select,
.form-group textarea,
.status-badge,
.social-link {
    border-radius: 20px;
}

button,
.button,
.service-button,
.minecraft-button,
.hosting-button,
.submit-button {
    border-radius: 25px;
}

html, 
body, 
.container,
#root,
main {
    border-radius: 0 !important;
}
html {
    overflow-x: hidden !important;
}

body {
    background: linear-gradient(135deg, 
        rgba(255, 198, 231, 0.3),
        rgba(116, 194, 168, 0.2),
        rgba(185, 133, 220, 0.1)
    );
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 10s infinite;
}

body::before {
    top: -100px;
    left: -100px;
}

body::after {
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s;
    display: none;
}

@media (pointer: fine) {
    .cursor {
        display: block;
    }
}

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

header {
    padding: 0px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 183, 221, 0.2);
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.1);
}

.logo {
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    margin-top: 5px;
}

.logo a {
    display: block;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
}

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.logo-image {
    height: 90px;
    width: auto;
    left: 20px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px;
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.1);
    border: 2px solid rgba(255, 183, 221, 0.2);
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::before {
    transform: scaleX(1);
}

nav a:hover {
    background: rgba(255, 198, 231, 0.1);
    transform: translateY(-2px);
}

.go-up-btn, .warranty-btn {
    background: var(--accent);
    color: white;
    font-weight: bold;
}

.go-up-btn:hover, .warranty-btn:hover {
    transform: translateY(-2px);
}



.mobile-menu-button {
    background: var(--accent) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

.mobile-menu-button:hover,
.mobile-menu-button.active {
    transform: translateY(-2px);
}

.mobile-menu-button span,
.mobile-menu-button span:nth-child(1),
.mobile-menu-button span:nth-child(2), 
.mobile-menu-button span:nth-child(3) {
    background: #fff !important;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary);
    text-shadow: 
        3px 3px 0 var(--accent),
        6px 6px 0 #ffadd2,
        8px 8px 15px rgba(255, 182, 193, 0.3);
    position: relative;
    display: inline-block;
    animation: floatUpDown 3s ease-in-out infinite;
    letter-spacing: 2px;
}

.hero h1::before,
.hero h1::after {
    position: absolute;
    font-size: 2.5rem;
    animation: starFloat 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0) rotate(-2deg) scale(1);
        letter-spacing: 2px;
    }
    50% {
        transform: translateY(-15px) rotate(2deg) scale(1.05);
        letter-spacing: 4px;
    }
}

@keyframes starFloat {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-50%) rotate(15deg) scale(1.2);
        opacity: 1;
    }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, 
        #ffb7dd,
        #ffb7dd
    );
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 183, 221, 0.2) !important;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.3),
        rgba(255, 183, 221, 0.4)
    );
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.2) !important;
}

.order-form select {
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    border: 2px solid rgba(255, 183, 221, 0.3);
    border-radius: 10px;
    color: #fff;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffb7dd' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

#linux-distribution-section,
#desktop-environment-section {
    margin-bottom: 20px;
}

#custom-input-section,
#custom-de-input-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 183, 221, 0.2);
}

.order-form select:focus {
    outline: none;
    border-color: rgba(255, 183, 221, 0.8);
    box-shadow: 0 0 20px rgba(255, 183, 221, 0.3);
    background: linear-gradient(135deg, #3a3a4e, #2a2a3e);
}

.order-form select:hover {
    border-color: rgba(255, 183, 221, 0.6);
    background: linear-gradient(135deg, #3a3a4e, #2a2a3e);
}

.order-form select option {
    background: #2a2a3e;
    color: #fff;
    padding: 10px;
    border: none;
}

.order-form select option:hover {
    background: rgba(255, 183, 221, 0.2);
}

#linux-distribution-section,
#desktop-environment-section,
#custom-input-section,
#custom-de-input-section {
    background: rgba(255, 183, 221, 0.05);
    border: 1px solid rgba(255, 183, 221, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

#linux-distribution-section label,
#desktop-environment-section label,
#custom-input-section label,
#custom-de-input-section label {
    color: #ffb7dd;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.service-area-info {
    background: linear-gradient(135deg, rgba(255, 183, 221, 0.1), rgba(111, 66, 193, 0.1));
    border: 2px solid rgba(255, 183, 221, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin: 30px auto 50px auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 183, 221, 0.1);
    transition: all 0.3s ease;
}

.service-area-info:hover {
    border-color: rgba(255, 183, 221, 0.5);
    box-shadow: 0 12px 40px rgba(255, 183, 221, 0.2);
    transform: translateY(-2px);
}

.service-area-info .info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.service-area-info .info-content h3 {
    color: #ffb7dd;
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-area-info .info-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

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

.services {
    padding: 100px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 30px;
    margin: 20px;
    color: white;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 198, 231, 0.2);
    border-color: rgba(255, 183, 221, 0.4);
}

.service-card.unavailable {
    opacity: 0.6;
    filter: grayscale(0.8);
    position: relative;
    pointer-events: none;
}

.service-card.unavailable:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.1);
    border-color: rgba(255, 183, 221, 0.2);
}

.service-card.unavailable .service-icon,
.service-card.unavailable h3,
.service-card.unavailable p,
.service-card.unavailable .price-tag,
.service-card.unavailable .price-note {
    opacity: 0.7;
}

.unavailable-badge {
    background: linear-gradient(45deg, #666, #999);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 15px 0;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.service-button.disabled {
    background: linear-gradient(45deg, #666, #999) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.service-button.disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.service-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-tag {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 15px 0;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.3);
    border: 2px solid rgba(255, 183, 221, 0.3);
    animation: priceGlow 2s ease-in-out infinite alternate;
}

.price-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin: 5px 0 15px 0;
}

@keyframes priceGlow {
    0% {
        box-shadow: 0 4px 15px rgba(255, 198, 231, 0.3);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 198, 231, 0.5);
    }
}

.service-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.2),
        rgba(255, 183, 221, 0.3)
    );
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 183, 221, 0.2);
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.service-button:hover::before {
    left: 100%;
}

.service-button:hover {
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.3),
        rgba(255, 183, 221, 0.4)
    );
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.2);
}

.oxos-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px;
}

.oxos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 20px;
}

.oxos-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.oxos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 198, 231, 0.2);
    border-color: rgba(255, 183, 221, 0.4);
}

.oxos-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
    animation: float 3s ease-in-out infinite;
}

.oxos-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.oxos-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.oxos-features {
    margin: 20px 0;
    text-align: left;
}

.oxos-features ul {
    list-style: none;
    padding: 0;
}

.oxos-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.oxos-features li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.oxos-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.2),
        rgba(255, 183, 221, 0.3)
    );
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 183, 221, 0.2);
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.oxos-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.oxos-button:hover::before {
    left: 100%;
}

.oxos-button:hover {
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.3),
        rgba(255, 183, 221, 0.4)
    );
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.2);
}

.oxos-card.unavailable {
    opacity: 0.6;
    filter: grayscale(0.8);
    position: relative;
    pointer-events: none;
}

.oxos-card.unavailable:hover {
    transform: none;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-color: rgba(255, 255, 255, 0.2);
}

.oxos-card.unavailable .oxos-icon,
.oxos-card.unavailable h3,
.oxos-card.unavailable p,
.oxos-card.unavailable .oxos-features li {
    opacity: 0.7;
}

.minecraft-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px;
}

.minecraft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 20px;
}

.minecraft-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.minecraft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 198, 231, 0.2);
    border-color: rgba(255, 183, 221, 0.4);
}

.server-info {
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.minecraft-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.2),
        rgba(255, 183, 221, 0.3)
    );
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 183, 221, 0.2);
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.minecraft-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.minecraft-button:hover::before {
    left: 100%;
}

.minecraft-button:hover {
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.3),
        rgba(255, 183, 221, 0.4)
    );
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.2);
}

.hosting-section {
    padding: 100px 0;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hosting-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 198, 231, 0.2);
    border-color: rgba(255, 183, 221, 0.4);
}

.minecraft-card.unavailable,
.hosting-card.unavailable {
    opacity: 0.6;
    filter: grayscale(0.8);
    position: relative;
    pointer-events: none;
}

.minecraft-card.unavailable:hover,
.hosting-card.unavailable:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.1);
    border-color: rgba(255, 183, 221, 0.2);
}

.minecraft-card.unavailable h3,
.minecraft-card.unavailable p,
.minecraft-card.unavailable .pricing,
.hosting-card.unavailable h3,
.hosting-card.unavailable p,
.hosting-card.unavailable .price {
    opacity: 0.7;
}

.minecraft-button.disabled,
.hosting-button.disabled {
    background: linear-gradient(45deg, #666, #999) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    pointer-events: none;
}

.minecraft-button.disabled:hover,
.hosting-button.disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.price {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 20px 0;
}

.hosting-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.2),
        rgba(255, 183, 221, 0.3)
    );
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 183, 221, 0.2);
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hosting-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.hosting-button:hover::before {
    left: 100%;
}

.hosting-button:hover {
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.3),
        rgba(255, 183, 221, 0.4)
    );
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.2);
}

.contact-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 183, 221, 0.2);
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.1);
    color: white;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 183, 221, 0.2);
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 183, 221, 0.4);
    box-shadow: 0 0 15px rgba(255, 198, 231, 0.2);
}

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

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, 
    #ffb7dd,
    #ffb7dd
    ) !important;
    color: white;
    border: 2px solid rgba(255, 183, 221, 0.2) !important;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.3),
        rgba(255, 183, 221, 0.4)
    ) !important;
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.2);
}

footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
}

.footer-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 183, 221, 0.2);
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    z-index: -1;
    pointer-events: none;
}

.footer-section:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 183, 221, 0.4);
    box-shadow: 0 8px 25px rgba(255, 198, 231, 0.2);
}

.footer-section:not(:hover)::before {
    left: -100%;
    transition: none;
}

.footer-section:hover::before {
    left: 100%;
    transition: left 0.5s ease-out;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.footer-section.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section.clickable:hover {
    transform: translateY(-2px);
    background: rgba(255, 183, 221, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin: -15px;
}

.click-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    display: block;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section.clickable:hover .click-hint {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
        overflow: hidden;
}


body.scroll-locked {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 183, 221, 0.3);
    border-radius: 25px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(255, 198, 231, 0.3);
        scrollbar-width: none;     -ms-overflow-style: none; }

.modal-content::-webkit-scrollbar {
    display: none; }

.modal-header {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    padding: 20px 30px;
    border-radius: 23px 23px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 183, 221, 0.3);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.close-modal {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    color: white;
}

.credits-section {
    margin-bottom: 30px;
}

.credits-section h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(255, 183, 221, 0.3);
    padding-bottom: 10px;
}

.credit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 183, 221, 0.2);
    transition: all 0.3s ease;
}

.credit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateX(5px);
}

.credit-avatar {
    font-size: 2.5rem;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.3);
}

.credit-info h4 {
    color: var(--accent);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.credit-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.thanks-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 183, 221, 0.2);
}

.thanks-list p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-align: center;
}

.thanks-people p {
    text-align: center !important;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.about-section {
    margin-bottom: 30px;
}

.about-section h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(255, 183, 221, 0.3);
    padding-bottom: 10px;
}

.about-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 183, 221, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-item h4 {
    color: var(--accent);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

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

.team-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 183, 221, 0.2);
    transition: all 0.3s ease;
}

.team-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateX(5px);
}

.team-avatar {
    font-size: 2.5rem;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.3);
}

.team-info h4 {
    color: var(--accent);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.team-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.legal-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.legal-link {
    display: block;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 183, 221, 0.3);
}

.legal-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 198, 231, 0.3);
    border-color: rgba(255, 183, 221, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    position: relative;
    border-radius: 15px;
    margin: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 183, 221, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    z-index: -1;
    pointer-events: none;
}

.footer-bottom:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 183, 221, 0.4);
    box-shadow: 0 8px 25px rgba(255, 198, 231, 0.2);
}

.footer-bottom:not(:hover)::before {
    left: -100%;
    transition: none;
}

.footer-bottom:hover::before {
    left: 100%;
    transition: left 0.5s ease-out;
}

.footer-mascot {
    position: absolute;
    right: 20px;
    bottom: 0;
    height: 150px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-mascot:hover {
    opacity: 1;
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    header {
        padding: 15px;
    }

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .service-grid,
    .minecraft-grid,
    .hosting-grid,
    .oxos-grid {
        grid-template-columns: 1fr;
    }

    .footer-mascot {
        height: 100px;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent);
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent),
        transparent
    );
}


.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 10px;
}

.status-badge.online {
    background: #4CAF50;
    color: white;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -20px); }
}

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

.particles-container {
    display: none;
}

.particle {
    display: none;
}

@keyframes moveParticle {
    0% { opacity: 0; }
    100% { opacity: 0; }
}

.submit-dots {
    display: inline-flex;
    margin-left: 8px;
}

.submit-dots .dot {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    margin: 0 2px;
    animation: dotPulse 1s infinite;
}

.submit-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.submit-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(0.5); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #2A2F4F, #917FB3, #4A437F, #6B4F9E);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.spinner::before,
.spinner::after {
    content: '';
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
}

.spinner::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--secondary);
    animation: spin 2s linear infinite;
}

.spinner::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: rgba(255, 255, 255, 0.5);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-button span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-button,
.minecraft-button,
.hosting-button,
.submit-button {
    position: relative;
    overflow: hidden;
}

.service-button::before,
.minecraft-button::before,
.hosting-button::before,
.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
}

.service-button:hover::before,
.minecraft-button:hover::before,
.hosting-button:hover::before,
.submit-button:hover::before {
    left: 100%;
}

section h2 {
    position: relative;
    overflow: hidden;
}

section h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    animation: titleShine 3s linear infinite;
}

@keyframes titleShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

button:not(.order-btn),
.order-button,
.service-card button:not(.order-btn) {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.3);
    padding: 12px 24px;
    font-size: 1.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

button:not(.order-btn):hover,
.order-button:hover,
.service-card button:not(.order-btn):hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 8px 25px rgba(255, 198, 231, 0.5);
}



button:not(.order-btn):active,
.order-button:active,
.service-card button:not(.order-btn):active {
    transform: scale(0.95);
}





.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-menu-button span,
    .mobile-menu-button span:nth-child(1),
    .mobile-menu-button span:nth-child(2), 
    .mobile-menu-button span:nth-child(3),
    .mobile-menu-button.active span,
    .mobile-menu-button.active span:nth-child(1),
    .mobile-menu-button.active span:nth-child(2),
    .mobile-menu-button.active span:nth-child(3) { 
        background: #ffffff !important; 
        background-color: #ffffff !important;
    }
}

.discount-code-group { margin-bottom: 20px; }
.discount-input-wrapper { display: flex; gap: 16px; align-items: center; }
.discount-input-wrapper input { 
    flex: 1; 
    min-width: 0;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 14px;
}
.apply-discount-btn { 
    padding: 12px 20px; 
    border-radius: 25px; 
    background: linear-gradient(45deg, 
        #ffb7dd,
        #ffb7dd
    ) !important; 
    color: white; 
    border: 2px solid rgba(255, 183, 221, 0.2) !important; 
    font-weight: bold; 
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 183, 221, 0.2) !important;
}

.apply-discount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    ) !important;
    transition: left 0.5s;
    z-index: -1;
    pointer-events: none;
}

.apply-discount-btn:hover::before {
    left: 100% !important;
}
.apply-discount-btn:hover { 
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.3),
        rgba(255, 183, 221, 0.4)
    ) !important;
    border-color: rgba(255, 183, 221, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.2) !important;
}

.discount-status { 
    margin-top: 12px; 
    padding: 12px 16px; 
    border-radius: 25px; 
    font-size: 14px; 
    font-weight: 500;
    display: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.discount-status.success { 
    background: rgba(130, 230, 130, 0.15); 
    border: 1px solid rgba(130, 230, 130, 0.3); 
    color: #82e682; 
    display: block;
}
.discount-status.error { 
    background: rgba(255, 138, 138, 0.15); 
    border: 1px solid rgba(255, 138, 138, 0.3); 
    color: #ffb3b3; 
    display: block;
}

.discount-input-wrapper input.valid { 
    border-color: #82e682; 
    box-shadow: 0 0 0 1px rgba(130, 230, 130, 0.3);
}
.discount-input-wrapper input.invalid { 
    border-color: #ffb3b3; 
    box-shadow: 0 0 0 1px rgba(255, 138, 138, 0.3);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
}

.sparkle {
    display: none;
}

.floating-element {
    display: none;
}

.burst-particle {
    display: none;
}

.ambient-particle {
    display: none;
}

.element-symbol {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.2;
    filter: blur(2px);
}

.service-title, .important-text, h1, h2, h3, .animated-text {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    animation: none !important;
}

@keyframes shine {
    0% { background-position: -100%; }
    100% { background-position: 200%; }
}

@keyframes titleShine {
    0% { background-position: -100%; }
    100% { background-position: 200%; }
}

.planet {
    position: fixed;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.3),
        rgba(255, 183, 221, 0.4)
    );
    border-radius: 50%;
    box-shadow: 
        inset -20px -20px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(255, 198, 231, 0.3);
    animation: planetFloat 6s ease-in-out infinite;
    z-index: -1;
}

.planet-small {
    position: fixed;
    top: 100px;
    right: 150px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, 
        rgba(116, 194, 168, 0.3),
        rgba(76, 194, 241, 0.4)
    );
    border-radius: 50%;
    box-shadow: 
        inset -10px -10px 30px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(76, 194, 241, 0.3);
    animation: planetFloat 8s ease-in-out infinite;
    z-index: -1;
}

.planet-tiny {
    position: fixed;
    bottom: 200px;
    left: 100px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, 
        rgba(185, 133, 220, 0.3),
        rgba(255, 183, 221, 0.4)
    );
    border-radius: 50%;
    box-shadow: 
        inset -5px -5px 15px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(185, 133, 220, 0.3);
    animation: planetFloat 4s ease-in-out infinite;
    z-index: -1;
}

.planet-medium {
    position: fixed;
    top: 300px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, 
        rgba(250, 182, 50, 0.3),
        rgba(255, 136, 0, 0.4)
    );
    border-radius: 50%;
    box-shadow: 
        inset -15px -15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(250, 182, 50, 0.3);
    animation: planetFloatReverse 7s ease-in-out infinite;
    z-index: -1;
}

.planet::before,
.planet-small::before,
.planet-tiny::before,
.planet-medium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    right: -20%;
    height: 20%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(-15deg);
    filter: blur(5px);
}

.planet::after,
.planet-small::after,
.planet-tiny::after,
.planet-medium::after {
    content: '';
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: linear-gradient(-45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    filter: blur(2px);
    animation: planetGlow 4s ease-in-out infinite;
}

@keyframes planetFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(5deg); }
}

@keyframes planetFloatReverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(-5deg); }
}

@keyframes planetGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.scroll-progress {
    display: none;
}

.order-modal {
    max-width: 600px;
    width: 90%;
}

.order-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(232, 62, 140, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(111, 66, 193, 0.3);
}

.order-info h3 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.order-price {
    color: #98fb98;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(152, 251, 152, 0.5);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-form label {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.order-form input,
.order-form textarea {
    padding: 12px 16px;
    border: 2px solid rgba(111, 66, 193, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.8);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #6f42c1;
    box-shadow: 0 0 20px rgba(111, 66, 193, 0.4);
    background: rgba(26, 26, 46, 0.9);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.cancel-button {
    padding: 12px 25px;
    background: linear-gradient(45deg, #6f42c1, #4e73df) !important;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cancel-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.cancel-button:hover::before {
    left: 100%;
}

.cancel-button:hover {
    border-color: rgba(255, 0, 0, 0.6);
    background: rgba(255, 0, 0, 0.1) !important;
    color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.submit-order-button {
    padding: 12px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: linear-gradient(45deg, #6f42c1, #4e73df) !important;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.submit-order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.submit-order-button:hover::before {
    left: 100%;
}

.submit-order-button:hover {
    background: linear-gradient(45deg, #7e57c2, #5c85e0) !important;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.submit-order-button:active {
    transform: translateY(0);
}

.submit-order-button.disabled {
    background: linear-gradient(45deg, #666, #999) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.submit-order-button.disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.submit-order-button.disabled::before {
    display: none;
}

.terms-checkbox {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 183, 221, 0.4);
    border-radius: 5px;
    margin-right: 12px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: rgba(255, 183, 221, 0.6);
    background: rgba(255, 183, 221, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.8),
        rgba(255, 183, 221, 0.9)
    );
    border-color: rgba(255, 183, 221, 0.8);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.terms-link {
    color: #ffb7dd;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: #ff8ac4;
    text-decoration: underline;
}

.terms-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

button.order-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.2),
        rgba(255, 183, 221, 0.3)
    );
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 183, 221, 0.2);
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

button.order-btn:hover::before {
    left: 100%;
}

button.order-btn:hover {
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.3),
        rgba(255, 183, 221, 0.4)
    );
    border-color: rgba(255, 183, 221, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 198, 231, 0.2);
}

.order-message {
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
}

.success-strip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    background: linear-gradient(45deg, 
        rgba(152, 251, 152, 0.9),
        rgba(144, 238, 144, 0.9)
    );
    color: #006400;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 8px 25px rgba(152, 251, 152, 0.4);
    border: 2px solid rgba(152, 251, 152, 0.6);
    z-index: 10000;
    animation: successAppear 0.5s ease-out;
}

@keyframes successAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-2deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-2deg) scale(1);
    }
}

.order-success {
    background: rgba(152, 251, 152, 0.2);
    border: 1px solid rgba(152, 251, 152, 0.4);
    color: #98fb98;
}

.warning-message {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
}

.warning-message p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.4;
}

.warning-message strong {
    color: #856404;
}

.order-error {
    background: rgba(255, 179, 179, 0.2);
    border: 1px solid rgba(255, 179, 179, 0.4);
    color: #ffb3b3;
}

.submit-order-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-order-button.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.clipboard-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.clipboard-notification.hide {
    animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}



#about-modal .modal-content {
    width: 90%;
    max-width: 600px;
}

#about-modal .modal-content.order-modal {
    width: 90%;
    max-width: 600px;
}

#about-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

#about-modal .modal-content {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 183, 221, 0.3);
    border-radius: 25px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 198, 231, 0.3);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.address-group {
    background: rgba(26, 26, 46, 0.3);
    border: 2px solid rgba(111, 66, 193, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.address-title {
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 183, 221, 0.5);
}

.address-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.form-group-half {
    flex: 1;
    margin-bottom: 0 !important;
}

.warranty-modal {
    max-width: 600px;
    width: 90%;
}

.warranty-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(232, 62, 140, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(111, 66, 193, 0.3);
}

.warranty-info h3 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.warranty-title {
    color: #98fb98;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(152, 251, 152, 0.5);
}

.warranty-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.warranty-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.warranty-form .form-group label {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.warranty-form .form-group input,
.warranty-form .form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(111, 66, 193, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.8);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.warranty-form .form-group input:focus,
.warranty-form .form-group textarea:focus {
    outline: none;
    border-color: #6f42c1;
    box-shadow: 0 0 20px rgba(111, 66, 193, 0.4);
    background: rgba(26, 26, 46, 0.9);
}

.warranty-form .form-group input::placeholder,
.warranty-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.warranty-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.submit-warranty-button {
    padding: 12px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: linear-gradient(45deg, #6f42c1, #4e73df) !important;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.submit-warranty-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.submit-warranty-button:hover::before {
    left: 100%;
}

.submit-warranty-button:hover {
    background: linear-gradient(45deg, #7e57c2, #5c85e0) !important;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.submit-warranty-button:active {
    transform: translateY(0) !important;
}

@media (max-width: 768px) {
    .warranty-modal {
        width: 100%;
        max-width: none;
    }
    
        
    .warranty-form .form-group input,
    .warranty-form .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;     }
    
    .submit-warranty-button {
        padding: 16px 20px;
        font-size: 16px;
    }
}

.warranty-message {
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.warranty-success {
    background: rgba(152, 251, 152, 0.2);
    color: #98fb98;
    border: 2px solid rgba(152, 251, 152, 0.4);
}

.warranty-error {
    background: rgba(255, 179, 179, 0.2);
    color: #ffb3b3;
    border: 2px solid rgba(255, 179, 179, 0.4);
}

.warranty-success {
    background: rgba(152, 251, 152, 0.2);
    color: #98fb98;
    border: 2px solid rgba(152, 251, 179, 0.4);
}

.submit-warranty-button.loading {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.submit-warranty-button.disabled {
    background: linear-gradient(45deg, #666, #999) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.submit-warranty-button.disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.submit-warranty-button.disabled::before {
    display: none;
}

.warranty-form .terms-checkbox {
    margin: 20px 0;
}

.warranty-form .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.warranty-form .checkbox-label input[type="checkbox"] {
    display: none;
}

.warranty-form .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 183, 221, 0.4);
    border-radius: 5px;
    margin-right: 12px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.warranty-form .checkbox-label:hover .checkmark {
    border-color: rgba(255, 183, 221, 0.6);
    background: rgba(255, 183, 221, 0.1);
}

.warranty-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, 
        rgba(255, 198, 231, 0.8),
        rgba(255, 183, 221, 0.9)
    );
    border-color: rgba(255, 183, 221, 0.8);
}

.warranty-form .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.warranty-form .terms-link {
    color: #ffb7dd;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.warranty-form .terms-link:hover {
    color: #ff8ac4;
    text-decoration: underline;
}

.warranty-form .terms-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

