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

body {
    background-color: #0a0a0a;
    font-family: 'Roboto', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

.profile {
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, black 100%);
    padding: 30px 20px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile img:hover {
    transform: scale(1.05);
}

.title {
    text-align: center;
    padding: 25px 20px 20px;
    background-color: #0a0a0a;
}

.title h1 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
}

.title p {
    font-size: 16px;
    color: #9ca3af;
    font-weight: 300;
}

.social-media {
    text-align: center;
    padding: 20px;
    background-color: #0a0a0a;
}

.social-media a {
    color: white;
    font-size: 32px;
    margin: 0 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-media a:hover {
    color: #dc2626;
    transform: translateY(-3px);
}

.websites {
    padding: 0 20px 20px;
    background-color: #0a0a0a;
}

.websites a {
    text-decoration: none;
    display: block;
}

.box {
    background: linear-gradient(135deg, #343a40 0%, #2d3238 100%);
    border: 2px solid #4b5563;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.box:hover {
    background: linear-gradient(135deg, #3d444c 0%, #343a40 100%);
    border-color: #6b7280;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.box i {
    font-size: 40px;
    color: white;
}

.box .link {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.socials {
    text-align: center;
    padding: 20px;
    background-color: #0a0a0a;
    border-radius: 0 0 20px 20px;
}

.socials a {
    text-decoration: none;
    color: #9ca3af;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    margin: 15% auto;
    padding: 30px;
    border: 2px solid #dc2626;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-content i {
    font-size: 60px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.modal-content p {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 25px;
}

.close-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.close-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: scale(1.05);
}

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

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

/* EXTRA GROSSE MOBILE ANSICHT */
@media (max-width: 640px) {
    body {
        padding: 15px;
    }

    .profile {
        padding: 50px 20px;
    }

    .profile img {
        width: 220px;
        height: 220px;
        border: 8px solid white;
    }

    .title {
        padding: 40px 20px 35px;
    }

    .title h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .title p {
        font-size: 24px;
    }

    .social-media {
        padding: 35px 20px;
    }

    .social-media a {
        font-size: 60px;
        margin: 0 30px;
    }

    .websites {
        padding: 0 20px 35px;
    }

    .box {
        padding: 40px 30px;
        margin-bottom: 25px;
        min-height: 150px;
        gap: 25px;
        flex-direction: column;
    }

    .box i {
        font-size: 70px;
    }

    .box .link {
        font-size: 26px;
        line-height: 1.5;
        font-weight: 700;
        text-align: center;
    }

    /* Modal für Mobile riesig */
    .modal-content {
        margin: 15% auto;
        padding: 45px 35px;
        width: 95%;
    }

    .modal-content i {
        font-size: 100px;
        margin-bottom: 30px;
    }

    .modal-content h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .modal-content p {
        font-size: 22px;
        line-height: 1.7;
        margin-bottom: 35px;
    }

    .close-btn {
        padding: 20px 60px;
        font-size: 22px;
        font-weight: 700;
    }
}