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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 25%, #cd853f 50%, #8b4513 75%, #654321 100%);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,248,220,0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(210,180,140,0.2) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(139, 69, 19, 0.03) 2px,
            rgba(139, 69, 19, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    background: linear-gradient(145deg, #fefcf7, #faf5eb);
    border: 8px solid #8b4513;
    border-radius: 25px;
    padding: 35px;
    max-width: 520px;
    width: 100%;
    box-shadow: 
        0 15px 35px rgba(139, 69, 19, 0.4),
        inset 0 2px 4px rgba(255, 248, 220, 0.9),
        inset 0 -2px 4px rgba(139, 69, 19, 0.2);
    text-align: center;
    animation: slideUp 0.8s ease-out;
    position: relative;
    z-index: 2;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: rotate(0deg) scale(1.02);
}

.container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #d2691e, #cd853f);
    border-radius: 30px;
    z-index: -1;
}

.container::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed rgba(139, 69, 19, 0.3);
    border-radius: 15px;
    pointer-events: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Instagram Badge Styles */
.instagram-badge {
    background: linear-gradient(45deg, #e6b800 0%, #d4af37 25%, #b8860b 50%, #cd853f 75%, #d2691e 100%);
    border: 4px solid #8b4513;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    color: #654321;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 8px 20px rgba(139, 69, 19, 0.4),
        inset 0 2px 4px rgba(255, 248, 220, 0.6);
    transition: all 0.3s ease;
    transform: rotate(1deg);
    position: relative;
}

.instagram-badge:hover {
    transform: rotate(0deg) translateY(-3px);
}

.instagram-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #daa520, #b8860b);
    border-radius: 24px;
    z-index: -1;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 5px 15px rgba(188, 24, 136, 0.3); }
    50% { box-shadow: 0 10px 30px rgba(188, 24, 136, 0.5); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.instagram-avatar {
    position: relative;
    flex-shrink: 0;
}

.instagram-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #8b4513;
    box-shadow: 
        0 4px 12px rgba(139, 69, 19, 0.4),
        inset 0 2px 4px rgba(255, 248, 220, 0.6);
    transition: all 0.3s ease;
    filter: sepia(20%) contrast(1.1) brightness(1.1);
    object-fit: cover;
}

.instagram-avatar:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: sepia(30%) contrast(1.2) brightness(1.2);
}

.verified-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(45deg, #daa520, #b8860b);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 3px solid #8b4513;
    box-shadow: 0 3px 8px rgba(139, 69, 19, 0.5);
}

.instagram-info {
    flex: 1;
    text-align: left;
    color: #654321;
}

.instagram-username {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #654321;
    text-shadow: 1px 1px 2px rgba(255, 248, 220, 0.8);
}

.instagram-bio {
    font-size: 16px;
    margin: 0 0 12px 0;
    opacity: 0.95;
    line-height: 1.4;
    color: #8b4513;
    font-style: italic;
}

.instagram-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    font-size: 14px;
    opacity: 0.9;
    color: #654321;
    background: rgba(255, 248, 220, 0.3);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

/* Instagram Follow Button Bottom */
.instagram-follow-btn-bottom {
    margin-bottom: 20px;
}

.instagram-follow-btn-bottom a {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(188, 24, 136, 0.3);
}

.instagram-follow-btn-bottom a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(188, 24, 136, 0.4);
}

h1 {
    color: #654321;
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 248, 220, 0.8);
    font-family: 'Georgia', serif;
}

.subtitle {
    color: #5d3f1a;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(255, 248, 220, 0.8);
    font-weight: 500;
}

/* Tech Stack Pills */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
}

.tech-pill {
    background: linear-gradient(45deg, #d2691e, #cd853f);
    color: #faf0e6;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #8b4513;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 
        0 4px 8px rgba(139, 69, 19, 0.3),
        inset 0 1px 2px rgba(255, 248, 220, 0.5);
    transform: rotate(-1deg);
}

.tech-pill:hover {
    transform: rotate(0deg) translateY(-2px) scale(1.05);
    box-shadow: 
        0 6px 12px rgba(139, 69, 19, 0.4),
        inset 0 2px 4px rgba(255, 248, 220, 0.7);
}

.tech-pill:nth-child(even) {
    transform: rotate(1deg);
}

/* LinkedIn Button */
.linkedin-btn {
    background: linear-gradient(45deg, #b8860b, #daa520);
    color: #654321;
    padding: 15px 30px;
    border: 3px solid #8b4513;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 
        0 8px 20px rgba(139, 69, 19, 0.4),
        inset 0 2px 4px rgba(255, 248, 220, 0.6);
    transform: rotate(-1deg);
    font-family: 'Georgia', serif;
}

.linkedin-btn:hover {
    transform: rotate(0deg) translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(139, 69, 19, 0.5),
        inset 0 3px 6px rgba(255, 248, 220, 0.8);
    background: linear-gradient(45deg, #daa520, #f0e68c);
}

.linkedin-btn:active {
    transform: translateY(-2px);
}

.linkedin-icon {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.features {
    margin: 40px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(145deg, #f5deb3, #deb887);
    border: 3px solid #8b4513;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 12px rgba(139, 69, 19, 0.3),
        inset 0 2px 4px rgba(255, 248, 220, 0.6);
    transform: rotate(-0.5deg);
}

.feature-item:hover {
    transform: rotate(0deg) translateX(5px) scale(1.02);
    background: linear-gradient(145deg, #deb887, #d2b48c);
    box-shadow: 
        0 8px 16px rgba(139, 69, 19, 0.4),
        inset 0 3px 6px rgba(255, 248, 220, 0.8);
}

.feature-item:nth-child(even) {
    transform: rotate(0.5deg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d2691e, #cd853f);
    border: 3px solid #8b4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 18px;
    box-shadow: 
        0 4px 10px rgba(139, 69, 19, 0.4),
        inset 0 2px 4px rgba(255, 248, 220, 0.6);
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: bold;
    color: #654321;
    margin-bottom: 5px;
    font-size: 16px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(255, 248, 220, 0.8);
}

.feature-desc {
    color: #5d3f1a;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.social-proof {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #8b4513;
    display: block;
    text-shadow: 2px 2px 4px rgba(255, 248, 220, 0.8);
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 12px;
    color: #654321;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cta-secondary {
    margin-top: 20px;
    color: #5d3f1a;
    font-size: 14px;
    font-style: italic;
    background: linear-gradient(145deg, rgba(255, 248, 220, 0.4), rgba(245, 222, 179, 0.4));
    padding: 15px;
    border-radius: 15px;
    border: 2px dashed #cd853f;
    text-shadow: 1px 1px 2px rgba(255, 248, 220, 0.8);
    font-weight: 500;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}



        /* Floating Elements Animation */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(218, 165, 32, 0.3);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 50%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
            25% { transform: translateY(-20px) rotate(90deg); opacity: 0.6; }
            50% { transform: translateY(0) rotate(180deg); opacity: 0.3; }
            75% { transform: translateY(20px) rotate(270deg); opacity: 0.6; }
        }

        @media (max-width: 480px) {
            .container {
                padding: 30px 20px;
                margin: 10px;
            }
            
            .instagram-badge {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .instagram-info {
                text-align: center;
            }
            
            h1 {
                font-size: 28px;
            }
            
            .subtitle {
                font-size: 16px;
            }
            
            .linkedin-btn {
                padding: 18px 30px;
                font-size: 18px;
            }
            
            .stats {
                gap: 10px;
            }
            
            .tech-stack {
                justify-content: center;
            }
        } 