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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 40px;
    font-weight: 300;
}

.website-link {
    display: inline-block;
    font-size: 2rem;
    color: #2196F3;
    text-decoration: none;
    margin: 40px 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: #1976D2;
}

.partnership-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #333333;
    margin-top: 40px;
    flex-wrap: wrap;
}

.partnership-info span {
    display: inline-block;
}

.net-haberler-logo {
    height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .website-link {
        font-size: 1.5rem;
    }

    .partnership-info {
        font-size: 1.1rem;
    }

    .container {
        padding: 40px 20px;
    }

    .net-haberler-logo {
        height: 35px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .website-link {
        font-size: 1.2rem;
    }

    .partnership-info {
        font-size: 1rem;
    }

    .net-haberler-logo {
        height: 30px;
    }
}

/* Accessibility improvements */
.website-link:focus,
.website-link:hover {
    outline: 2px solid #2196F3;
    outline-offset: 4px;
}

/* Print styles */
@media print {
    body {
        background-color: #ffffff;
    }

    .container {
        box-shadow: none;
    }
}
