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

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.tagline {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.divider {
    width: 80px;
    height: 2px;
    background-color: #444;
    margin-bottom: 40px;
}

.about {
    margin-bottom: 50px;
    max-width: 700px;
}

.about p {
    font-size: 1.05rem;
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.about p:first-child {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
}

.social-icon {
    width: 32px;
    height: 32px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-4px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 16px;
    }

    .title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .tagline {
        font-size: 1rem;
    }

    .about p {
        font-size: 1rem;
    }

    .social-links {
        gap: 20px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 12px;
    }

    .title {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .about p {
        font-size: 0.95rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
}
