/* Grundlegende Zurücksetzung */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.action-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Domain Offerings Section */
.domain-offerings {
    margin-top: 2rem;
    text-align: left;
}

.domain-item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.domain-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.domain-item h2 {
    color: #2980b9;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.domain-link {
    color: #2980b9;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.domain-link:hover {
    text-decoration: underline;
}

.domain-link::after {
    content: "↗";
    font-size: 0.8em;
    position: relative;
    top: -0.5em;
    margin-left: 0.2em;
    opacity: 0.7;
}

.domain-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.keywords {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Domain Button */
.domain-button {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    float: right;
}

.domain-button:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .action-button {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
    
    .domain-item h2 {
        font-size: 1.5rem;
    }
    
    .domain-button {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    p {
        margin-bottom: 1.5rem;
    }
    
    .domain-item {
        padding: 1.2rem;
    }
    
    .keywords {
        margin-bottom: 1.2rem;
    }
    
    .domain-button {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
} 