* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
}

header {
    background-color: #000;
    padding: 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: #ff00cc;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    justify-content: flex-end;
    padding: 0 2rem;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    top: 80px;
    z-index: 999;
}

nav ul {
    display: flex;
    list-style: none;
}

nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    transition: all 0.3s;
    font-weight: 600;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 80%;
}

.active::after {
    width: 80%;
}

.content {
    padding-top: 140px;
}

section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

h1, h2, h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(QrCodeHeader.png);
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    max-width: 800px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: #ccc;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 204, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 204, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ff00cc;
    box-shadow: none;
}

.btn-outline:hover {
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    border: 2px solid transparent;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.equipment-card {
    background: rgba(30, 30, 40, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s;
    position: relative;
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 204, 0.2);
}

.card-img {
    height: 250px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(30, 30, 40, 1), transparent);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.price {
    font-weight: bold;
    color: #ff00cc;
    font-size: 1.4rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
}

.about-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-img {
flex: 1;
height: 400px;
border-radius: 30px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(227, 224, 224, 0.3);
position: relative;
}
.about-img img {
width: 100%;
height: 100%;
}


.about-content {
    flex: 1.5;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1.1rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 204, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 204, 0); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.special-offer {
    background: linear-gradient(-45deg, #ff00cc, #3333ff, #5100ff, #ff00cc);
    background-size: 400% 400%;
    animation: gradient 6s ease infinite, pulse 2s infinite;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 4rem auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 80%);
    transform: rotate(30deg);
}

.special-offer h2 {
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.special-offer p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.special-offer .price-tag {
    font-size: 2rem;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.rent-container {
    margin-top: 3rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-filter {
    padding: 0.8rem 1.8rem;
    background: rgba(30, 30, 40, 0.9);
    border: 1px solid #333;
    border-radius: 50px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.category-filter:hover, .category-filter.active {
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    color: white;
    border-color: transparent;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: rgba(30, 30, 40, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-text {
    color: #ccc;
}

.contact-text strong {
    display: block;
    color: white;
    margin-bottom: 0.3rem;
}

.contact-form {
    background: rgba(30, 30, 40, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #ff00cc;
    box-shadow: 0 0 0 2px rgba(255, 0, 204, 0.2);
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
}

.footer-section p {
    color: #999;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 204, 0.4);
}

.copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #999;
}

@media (max-width: 992px) {
    .hero {
        padding-left: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    nav {
        justify-content: center;
        padding: 0;
        top: 70px;
    }
    
    nav ul {
        width: 100%;
        justify-content: center;
    }
    
    nav a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .content {
        padding-top: 120px;
    }
    
    .hero {
        padding: 0 1.5rem;
        height: 500px;
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin: 0 auto 1.5rem;
    }
    
    .hero p {
        margin: 0 auto 2rem;
    }
    
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-img {
        width: 100%;
        height: 300px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .special-offer h2 {
        font-size: 2rem;
    }
}

.popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
display: none;
justify-content: center;
align-items: center;
z-index: 1001;
}

.popup-content {
background-color: #1e1e28;
padding: 2rem;
border-radius: 15px;
max-width: 800px;
max-height: 80vh;
overflow-y: auto;
color: #f0f0f0;
position: relative;
box-shadow: 0 10px 30px rgba(255, 0, 204, 0.3);
}

.popup-close {
position: absolute;
top: 15px;
right: 15px;
font-size: 1.5rem;
cursor: pointer;
color: #ff00cc;
background: none;
border: none;
transition: all 0.3s;
}

.popup-close:hover {
transform: scale(1.2);
}

.link-preview {
  text-decoration: none;
  display: block;
  max-width: 500px;
  margin-top: 20px;
}

.preview-card {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff;
}

.preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.preview-image {
  width: 150px;
  object-fit: cover;
}

.preview-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-content h4 {
  margin: 0;
  font-size: 1.2em;
  color: #222;
}

.preview-content p {
  margin: 8px 0 0;
  color: #666;
  font-size: 0.95em;
}



.rabatt-banner {
    background: linear-gradient(135deg, #ff00cc, #333399);
    color: white;
    text-align: center;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.7);
    position: relative;
    overflow: hidden;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 0, 204, 0.7);
    }
    to {
        box-shadow: 0 0 25px rgba(255, 0, 204, 0.9), 0 0 40px rgba(51, 51, 153, 0.8);
    }
}

.rabatt-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.rabatt-text {
    z-index: 2;
}

.rabatt-banner h2 {
    font-size: 28px;
    margin: 0 0 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.rabatt-banner p {
    font-size: 16px;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.rabatt-code {
    background-color: white;
    color: #ff00cc;
    padding: 3px 8px;
    font-weight: bold;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block;
    text-shadow: none;
}

.rabatt-blinking-star {
    font-size: 32px;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

.rabatt-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 1px, transparent 2px);
    background-size: 100px 100px;
    animation: moveParticles 20s linear infinite;
    z-index: 1;
}

@keyframes moveParticles {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100px 100px;
    }
}

@media (max-width: 600px) {
    .rabatt-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .rabatt-banner h2 {
        font-size: 22px;
    }
    
    .rabatt-banner p {
        font-size: 14px;
    }
}