body {
    background-color: #0f172a;
    color: #ffffff;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.profil {
    text-align: center;
    margin-bottom: 24px;
}

.profil img {
    width: 140px;
    height: 140px;
    border-radius: 50%; 
    border: 3px solid #38bdf8;
    margin-bottom: 12px;
    object-fit: cover;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 90%;
    max-width: 350px;
}

.link-card {
    background-color: #00f0ff;
    color: #000000;
    border: 3px solid #000000;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.2s ease;
}

.link-card:hover,
.link-card:active {
    background-color: #00d2df;
    transform: scale(0.96);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

.theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: #ffffff;
    color: #0f172a;
}

body.light-theme {
    background-color: #f8fafc;
    color: #0f172a;
}

body.light-theme .theme-toggle {
    color: #0f172a;
    border-color: #0f172a;
}

body.light-theme .theme-toggle:hover {
    background-color: #0f172a;
    color: #ffffff;
}

/* --- IP DOBOZ KINÉZETE --- */
.ip-box {
    background-color: rgba(0, 240, 255, 0.05);
    border: 2px dashed #00f0ff;
    border-radius: 12px;
    padding: 12px 24px;
    text-align: center;
    width: 90%;
    max-width: 350px;
    margin-top: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.ip-box:hover {
    background-color: rgba(0, 240, 255, 0.15);
    transform: scale(0.98);
}

.ip-title {
    font-size: 14px;
    margin: 0 0 4px 0;
    opacity: 0.8;
}

.ip-address {
    font-size: 16px;
    margin: 0;
    color: #00f0ff;
}

#copy-alert {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00f0ff;
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.light-theme .ip-box {
    border-color: #0f172a;
    background-color: rgba(15, 23, 42, 0.05);
}

body.light-theme .ip-address {
    color: #0f172a;
}
