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

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #F5F5F0;
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
    background: url(bg1.png);
    background-size: cover;
}

/* Decorative Elements */
.decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.decoration img {
    display: block;
}

.decoration-top-left {
    top: 20px;
    left: 20px;
}

.pattern-left {
    width: 200px;
    height: auto;
    opacity: 0.7;
}

.decoration-top-right {
    top: 20px;
    right: 20px;
}

.pattern-right {
    width: 280px;
    height: auto;
    opacity: 0.7;
    transform: scaleX(-1);
}

.decoration-bottom-left {
    bottom: 20px;
    left: 20px;
}

.pattern-bottom-left {
    width: 180px;
    height: auto;
    opacity: 0.7;
    transform: rotate(180deg);
}

.decoration-bottom-right {
    bottom: 20px;
    right: 20px;
}

.pattern-bottom-right {
    width: 250px;
    height: auto;
    opacity: 0.7;
    transform: scale(-1);
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Logo Section */
.logo-section {
    width: 100%;
    text-align: center;
}

.logo {
    max-width: 450px;
    width: 100%;
    height: auto;
}

/* Message Box */
.message-box {
    background-color: #B8D332;
    padding: 25px 40px;
    border-radius: 0;
    max-width: 800px;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    border-radius: 20px;
}

.message-box p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    margin: 0;
}

.arrow-decoration {
    position: absolute;
    right: -80px;
    bottom: -60px;
}

/* Profile and Info Section */
.profile-info-section {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #FF6B35;
}

.info-text {
    flex: 1;
    padding-top: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Courier New', Courier, monospace;
}

.subtitle {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 35px;
    font-weight: 400;
}

.instagram-box {
    background-color: #FF6B35;
    padding: 20px 30px;
    display: inline-block;
    border-radius: 20px;
    color: #fff;
}

.segue-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.instagram-link {
    font-size: 1.15rem;
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    display: block;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .decoration-top-right,
    .decoration-bottom-right {
        right: 10px;
    }

    .pattern-right {
        width: 220px;
    }

    .pattern-bottom-right {
        width: 200px;
    }

    .arrow-decoration {
        display: none;
    }

    .profile-info-section {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 350px;
    }

    .message-box {
        padding: 20px 25px;
    }

    .message-box p {
        font-size: 1.1rem;
    }

    .profile-info-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .profile-image img {
        width: 220px;
        height: 220px;
    }

    .info-text {
        text-align: center;
        padding-top: 0;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .pattern-left,
    .pattern-bottom-left {
        width: 120px;
    }

    .pattern-right {
        width: 160px;
    }

    .pattern-bottom-right {
        width: 140px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .decoration-top-left,
    .decoration-top-right,
    .decoration-bottom-left,
    .decoration-bottom-right {
        display: none;
    }

    .logo {
        max-width: 280px;
    }

    .container {
        gap: 25px;
    }

    .message-box {
        padding: 18px 20px;
    }

    .message-box p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .profile-image img {
        width: 180px;
        height: 180px;
        border: 6px solid #FF6B35;
    }

    h1 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .instagram-box {
        padding: 16px 22px;
    }

    .segue-text {
        font-size: 1.05rem;
    }

    .instagram-link {
        font-size: 1rem;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .container {
        animation: fadeIn 0.8s ease-out;
    }

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