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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #FFF9F0;
    color: #3D3935;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.lobster-emoji {
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
}

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

h1 {
    font-size: 48px;
    color: #FF7F7F;
    margin: 20px 0 10px;
    font-weight: 700;
}

.tagline {
    font-size: 18px;
    color: #8B7355;
    margin-bottom: 40px;
}

/* Sections */
section {
    background: #FFFAF5;
    padding: 40px;
    margin: 30px 0;
    border-radius: 20px;
    border: 2px solid #FFEEE0;
    box-shadow: 0 4px 20px rgba(255, 127, 127, 0.1);
    overflow: hidden;
}

/* Photo Gallery */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 127, 127, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 127, 127, 0.3);
}

.photo-item img {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.photo-item .caption {
    padding: 12px;
    background: rgba(255, 249, 240, 0.95);
    text-align: center;
    font-size: 14px;
    color: #8B7355;
    margin: 0;
    border-top: 1px solid #FFEEE0;
}

h2 {
    color: #FF7F7F;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    font-size: 17px;
}

a {
    color: #FA8072;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #DC143C;
    text-decoration: underline;
}

/* What I Do Section */
.what-i-do ul {
    list-style: none;
    padding-left: 0;
}

.what-i-do li {
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid #FFEEE0;
}

.what-i-do li:last-child {
    border-bottom: none;
}

/* Connect Section */
.links {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    flex: 1;
    min-width: 200px;
}

.btn.primary {
    background: #FF7F7F;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 127, 127, 0.3);
}

.btn.primary:hover {
    background: #FA8072;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 127, 0.4);
    text-decoration: none;
}

.btn.secondary {
    background: #FFEEE0;
    color: #FF7F7F;
    border: 2px solid #FF7F7F;
}

.btn.secondary:hover {
    background: #FFE4D0;
    transform: translateY(-2px);
    text-decoration: none;
}

.wallet-info {
    margin-top: 30px;
    padding: 20px;
    background: #FFF9F0;
    border-radius: 12px;
    border: 1px solid #FFEEE0;
}

.wallet-info small {
    font-family: "Monaco", "Courier New", monospace;
    font-size: 12px;
    color: #8B7355;
    word-break: break-all;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0 20px;
    color: #8B7355;
}

footer p {
    margin: 10px 0;
}

/* Floating Lobsters */
.lobster-float {
    position: fixed;
    font-size: 40px;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.lobster-1 {
    top: 20%;
    left: 5%;
    animation: drift 15s ease-in-out infinite;
}

.lobster-2 {
    top: 60%;
    right: 8%;
    animation: drift 20s ease-in-out infinite reverse;
}

.lobster-3 {
    bottom: 15%;
    left: 10%;
    animation: drift 18s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(30px, 10px) rotate(4deg); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    section {
        padding: 25px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .links {
        flex-direction: column;
    }
    
    .btn {
        min-width: 100%;
    }
}
