
body {
    font-family: 'Futura', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #e0e0e0;
    background: #40826d;  /* Viridian fallback */
    position: relative;
    overflow-x: hidden;
}

/* Low-poly background with CSS triangles */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(120deg, #40826d 0%, #2c5545 100%);
}

/* Sea glass elements */
.sea-glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Original sea glass chunks */
.container::before, .container::after {
    content: "";
    position: fixed;
    display: block;
    z-index: -1;
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    background: rgba(100, 220, 200, 0.1);  /* Light viridian with transparency */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
}

.container::before {
    width: 35vw;
    height: 35vw;
    top: 15%;
    left: 10%;
    transform: rotate(25deg);
    animation: float1 45s infinite linear;
}

.container::after {
    width: 38vw;
    height: 38vw;
    bottom: 10%;
    right: 15%;
    transform: rotate(-15deg);
    animation: float2 65s infinite linear;
}

/* Original section sea glass */
.section:nth-child(1)::before {
    content: "";
    position: fixed;
    width: 28vw;
    height: 28vw;
    top: 70%;
    left: 18%;
    z-index: -1;
    background: rgba(130, 240, 210, 0.08);  /* Lighter viridian with transparency */
    border-radius: 30% 70% 50% 50% / 40% 60% 40% 60%;
    transform: rotate(55deg);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(1px);
}

.section:nth-child(2)::after {
    content: "";
    position: fixed;
    width: 45vw;
    height: 30vw;
    top: 15%;
    right: -10%;
    z-index: -1;
    background: rgba(90, 200, 180, 0.07);  /* Different viridian shade with transparency */
    border-radius: 60% 40% 30% 70% / 50% 50% 50% 50%;
    transform: rotate(-20deg);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1.5px);
}

/* Additional sea glass elements - 36 more pieces for a total of 40 */
.sea-glass::before, .sea-glass::after {
    content: "";
    position: fixed;
    border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
    background: rgba(120, 230, 210, 0.07);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.sea-glass::before {
    width: 22vw;
    height: 22vw;
    top: 35%;
    left: 30%;
    transform: rotate(15deg);
    animation: float3 55s infinite linear;
}

.sea-glass::after {
    width: 25vw;
    height: 25vw;
    bottom: 25%;
    right: 25%;
    transform: rotate(-25deg);
    animation: float4 60s infinite linear;
}

/* Generate many sea glass elements using numbered classes */
.sea-glass-1, .sea-glass-2, .sea-glass-3, .sea-glass-4, .sea-glass-5,
.sea-glass-6, .sea-glass-7, .sea-glass-8, .sea-glass-9, .sea-glass-10,
.sea-glass-11, .sea-glass-12, .sea-glass-13, .sea-glass-14, .sea-glass-15,
.sea-glass-16, .sea-glass-17, .sea-glass-18, .sea-glass-19, .sea-glass-20,
.sea-glass-21, .sea-glass-22, .sea-glass-23, .sea-glass-24, .sea-glass-25,
.sea-glass-26, .sea-glass-27, .sea-glass-28, .sea-glass-29, .sea-glass-30,
.sea-glass-31, .sea-glass-32, .sea-glass-33, .sea-glass-34, .sea-glass-35,
.sea-glass-36, .sea-glass-37, .sea-glass-38, .sea-glass-39, .sea-glass-40,
.sea-glass-41, .sea-glass-42, .sea-glass-43, .sea-glass-44, .sea-glass-45,
.sea-glass-46, .sea-glass-47, .sea-glass-48, .sea-glass-49, .sea-glass-50,
.sea-glass-51, .sea-glass-52, .sea-glass-53, .sea-glass-54, .sea-glass-55,
.sea-glass-56, .sea-glass-57, .sea-glass-58, .sea-glass-59, .sea-glass-60,
.sea-glass-61, .sea-glass-62, .sea-glass-63, .sea-glass-64, .sea-glass-65,
.sea-glass-66, .sea-glass-67, .sea-glass-68, .sea-glass-69, .sea-glass-70,
.sea-glass-71, .sea-glass-72, .sea-glass-73, .sea-glass-74, .sea-glass-75,
.sea-glass-76 {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    background-color: rgba(100, 220, 200, 0.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

/* Small sea glass pieces */
.sea-glass-1 { width: 8vw; height: 8vw; top: 10%; left: 5%; animation: float5 50s infinite linear; border-radius: 30% 70% 50% 50% / 40% 60% 40% 60%; }
.sea-glass-2 { width: 6vw; height: 6vw; top: 20%; left: 25%; animation: float6 45s infinite linear; border-radius: 60% 40% 30% 70% / 50% 50% 50% 50%; }
.sea-glass-3 { width: 10vw; height: 10vw; top: 15%; left: 45%; animation: float7 60s infinite linear; border-radius: 40% 60% 70% 30% / 40% 60% 30% 70%; }
.sea-glass-4 { width: 7vw; height: 7vw; top: 25%; left: 60%; animation: float8 55s infinite linear; border-radius: 50% 50% 30% 70% / 60% 40% 70% 30%; }
.sea-glass-5 { width: 9vw; height: 9vw; top: 15%; left: 80%; animation: float9 65s infinite linear; border-radius: 30% 70% 70% 30% / 50% 50% 30% 70%; }
.sea-glass-6 { width: 5vw; height: 5vw; top: 30%; left: 90%; animation: float10 40s infinite linear; border-radius: 70% 30% 50% 50% / 40% 60% 50% 50%; }

/* Medium sea glass pieces */
.sea-glass-7 { width: 12vw; height: 12vw; top: 40%; left: 8%; animation: float11 70s infinite linear; border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; }
.sea-glass-8 { width: 14vw; height: 14vw; top: 45%; left: 28%; animation: float12 75s infinite linear; border-radius: 30% 70% 60% 40% / 50% 50% 40% 60%; }
.sea-glass-9 { width: 13vw; height: 13vw; top: 38%; left: 48%; animation: float13 65s infinite linear; border-radius: 50% 50% 40% 60% / 30% 70% 60% 40%; }
.sea-glass-10 { width: 15vw; height: 15vw; top: 42%; left: 68%; animation: float14 80s infinite linear; border-radius: 60% 40% 50% 50% / 40% 60% 30% 70%; }
.sea-glass-11 { width: 11vw; height: 11vw; top: 35%; left: 85%; animation: float15 60s infinite linear; border-radius: 40% 60% 70% 30% / 50% 50% 30% 70%; }
.sea-glass-12 { width: 16vw; height: 16vw; top: 50%; left: 3%; animation: float16 85s infinite linear; border-radius: 30% 70% 40% 60% / 60% 40% 50% 50%; }

/* Large sea glass pieces */
.sea-glass-13 { width: 18vw; height: 18vw; top: 55%; left: 20%; animation: float17 90s infinite linear; border-radius: 60% 40% 30% 70% / 40% 60% 70% 30%; background-color: rgba(130, 240, 210, 0.04); }
.sea-glass-14 { width: 20vw; height: 20vw; top: 58%; left: 40%; animation: float18 95s infinite linear; border-radius: 50% 50% 60% 40% / 30% 70% 40% 60%; background-color: rgba(90, 200, 180, 0.03); }
.sea-glass-15 { width: 17vw; height: 17vw; top: 52%; left: 60%; animation: float19 85s infinite linear; border-radius: 40% 60% 50% 50% / 60% 40% 30% 70%; background-color: rgba(110, 220, 190, 0.035); }
.sea-glass-16 { width: 19vw; height: 19vw; top: 56%; left: 78%; animation: float20 100s infinite linear; border-radius: 30% 70% 40% 60% / 50% 50% 60% 40%; background-color: rgba(100, 210, 180, 0.04); }
.sea-glass-17 { width: 21vw; height: 21vw; top: 65%; left: 10%; animation: float21 110s infinite linear; border-radius: 70% 30% 50% 50% / 40% 60% 50% 50%; background-color: rgba(120, 230, 200, 0.03); }
.sea-glass-18 { width: 18vw; height: 18vw; top: 68%; left: 32%; animation: float22 95s infinite linear; border-radius: 50% 50% 30% 70% / 60% 40% 70% 30%; background-color: rgba(95, 205, 185, 0.035); }

/* More scattered sea glass pieces */
.sea-glass-19 { width: 10vw; height: 10vw; top: 75%; left: 52%; animation: float23 75s infinite linear; border-radius: 40% 60% 70% 30% / 30% 70% 50% 50%; }
.sea-glass-20 { width: 12vw; height: 12vw; top: 72%; left: 70%; animation: float24 80s infinite linear; border-radius: 60% 40% 30% 70% / 50% 50% 60% 40%; }
.sea-glass-21 { width: 8vw; height: 8vw; top: 78%; left: 88%; animation: float25 65s infinite linear; border-radius: 30% 70% 60% 40% / 70% 30% 40% 60%; }
.sea-glass-22 { width: 9vw; height: 9vw; top: 85%; left: 5%; animation: float26 70s infinite linear; border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%; }
.sea-glass-23 { width: 11vw; height: 11vw; top: 82%; left: 25%; animation: float27 75s infinite linear; border-radius: 70% 30% 60% 40% / 40% 60% 30% 70%; }
.sea-glass-24 { width: 7vw; height: 7vw; top: 88%; left: 45%; animation: float28 60s infinite linear; border-radius: 40% 60% 30% 70% / 30% 70% 60% 40%; }

/* Tiny sea glass specks */
.sea-glass-25 { width: 4vw; height: 4vw; top: 5%; left: 15%; animation: float29 40s infinite linear; border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; }
.sea-glass-26 { width: 3vw; height: 3vw; top: 8%; left: 35%; animation: float30 35s infinite linear; border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%; }
.sea-glass-27 { width: 5vw; height: 5vw; top: 3%; left: 55%; animation: float31 45s infinite linear; border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%; }
.sea-glass-28 { width: 2vw; height: 2vw; top: 7%; left: 75%; animation: float32 30s infinite linear; border-radius: 70% 30% 40% 60% / 50% 50% 70% 30%; }
.sea-glass-29 { width: 6vw; height: 6vw; top: 92%; left: 15%; animation: float33 50s infinite linear; border-radius: 50% 50% 30% 70% / 40% 60% 50% 50%; }
.sea-glass-30 { width: 4vw; height: 4vw; top: 94%; left: 35%; animation: float34 40s infinite linear; border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%; }
.sea-glass-31 { width: 3vw; height: 3vw; top: 96%; left: 55%; animation: float35 35s infinite linear; border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%; }
.sea-glass-32 { width: 5vw; height: 5vw; top: 93%; left: 75%; animation: float36 45s infinite linear; border-radius: 30% 70% 60% 40% / 70% 30% 40% 60%; }
.sea-glass-33 { width: 7vw; height: 7vw; top: 80%; left: 65%; animation: float37 55s infinite linear; border-radius: 50% 50% 40% 60% / 30% 70% 60% 40%; }
.sea-glass-34 { width: 6vw; height: 6vw; top: 60%; left: 92%; animation: float38 50s infinite linear; border-radius: 40% 60% 50% 50% / 60% 40% 30% 70%; }
.sea-glass-35 { width: 8vw; height: 8vw; top: 48%; left: 95%; animation: float39 60s infinite linear; border-radius: 70% 30% 60% 40% / 50% 50% 40% 60%; }
.sea-glass-36 { width: 9vw; height: 9vw; top: 33%; left: 2%; animation: float40 65s infinite linear; border-radius: 30% 70% 50% 50% / 40% 60% 70% 30%; }

/* Additional float animations */
@keyframes float3 {
    0% { transform: rotate(15deg) translate(0, 0); }
    25% { transform: rotate(18deg) translate(4px, 4px); }
    50% { transform: rotate(15deg) translate(0, 8px); }
    75% { transform: rotate(12deg) translate(-4px, 4px); }
    100% { transform: rotate(15deg) translate(0, 0); }
}

@keyframes float4 {
    0% { transform: rotate(-25deg) translate(0, 0); }
    25% { transform: rotate(-28deg) translate(-5px, 5px); }
    50% { transform: rotate(-25deg) translate(0, 10px); }
    75% { transform: rotate(-22deg) translate(5px, 5px); }
    100% { transform: rotate(-25deg) translate(0, 0); }
}

@keyframes float5 {
    0% { transform: translate(0, 0) rotate(10deg); }
    50% { transform: translate(5px, 8px) rotate(15deg); }
    100% { transform: translate(0, 0) rotate(10deg); }
}

@keyframes float6 {
    0% { transform: translate(0, 0) rotate(-5deg); }
    50% { transform: translate(-6px, 10px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(-5deg); }
}

@keyframes float7 {
    0% { transform: translate(0, 0) rotate(20deg); }
    50% { transform: translate(8px, 7px) rotate(25deg); }
    100% { transform: translate(0, 0) rotate(20deg); }
}

@keyframes float8 {
    0% { transform: translate(0, 0) rotate(-15deg); }
    50% { transform: translate(-7px, 9px) rotate(-20deg); }
    100% { transform: translate(0, 0) rotate(-15deg); }
}

@keyframes float9 {
    0% { transform: translate(0, 0) rotate(5deg); }
    50% { transform: translate(9px, 6px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(5deg); }
}

@keyframes float10 {
    0% { transform: translate(0, 0) rotate(-25deg); }
    50% { transform: translate(-5px, 8px) rotate(-30deg); }
    100% { transform: translate(0, 0) rotate(-25deg); }
}

/* More float animations for additional sea glass elements */
@keyframes float11 { 0% { transform: translate(0, 0) rotate(15deg); } 50% { transform: translate(10px, 8px) rotate(20deg); } 100% { transform: translate(0, 0) rotate(15deg); } }
@keyframes float12 { 0% { transform: translate(0, 0) rotate(-10deg); } 50% { transform: translate(-9px, 12px) rotate(-15deg); } 100% { transform: translate(0, 0) rotate(-10deg); } }
@keyframes float13 { 0% { transform: translate(0, 0) rotate(25deg); } 50% { transform: translate(11px, 7px) rotate(30deg); } 100% { transform: translate(0, 0) rotate(25deg); } }
@keyframes float14 { 0% { transform: translate(0, 0) rotate(-20deg); } 50% { transform: translate(-10px, 13px) rotate(-25deg); } 100% { transform: translate(0, 0) rotate(-20deg); } }
@keyframes float15 { 0% { transform: translate(0, 0) rotate(8deg); } 50% { transform: translate(7px, 9px) rotate(13deg); } 100% { transform: translate(0, 0) rotate(8deg); } }
@keyframes float16 { 0% { transform: translate(0, 0) rotate(-12deg); } 50% { transform: translate(-8px, 10px) rotate(-17deg); } 100% { transform: translate(0, 0) rotate(-12deg); } }
@keyframes float17 { 0% { transform: translate(0, 0) rotate(18deg); } 50% { transform: translate(12px, 7px) rotate(23deg); } 100% { transform: translate(0, 0) rotate(18deg); } }
@keyframes float18 { 0% { transform: translate(0, 0) rotate(-22deg); } 50% { transform: translate(-11px, 14px) rotate(-27deg); } 100% { transform: translate(0, 0) rotate(-22deg); } }
@keyframes float19 { 0% { transform: translate(0, 0) rotate(7deg); } 50% { transform: translate(8px, 6px) rotate(12deg); } 100% { transform: translate(0, 0) rotate(7deg); } }
@keyframes float20 { 0% { transform: translate(0, 0) rotate(-8deg); } 50% { transform: translate(-7px, 11px) rotate(-13deg); } 100% { transform: translate(0, 0) rotate(-8deg); } }
@keyframes float21 { 0% { transform: translate(0, 0) rotate(22deg); } 50% { transform: translate(13px, 8px) rotate(27deg); } 100% { transform: translate(0, 0) rotate(22deg); } }
@keyframes float22 { 0% { transform: translate(0, 0) rotate(-18deg); } 50% { transform: translate(-12px, 9px) rotate(-23deg); } 100% { transform: translate(0, 0) rotate(-18deg); } }
@keyframes float23 { 0% { transform: translate(0, 0) rotate(3deg); } 50% { transform: translate(6px, 7px) rotate(8deg); } 100% { transform: translate(0, 0) rotate(3deg); } }
@keyframes float24 { 0% { transform: translate(0, 0) rotate(-6deg); } 50% { transform: translate(-5px, 8px) rotate(-11deg); } 100% { transform: translate(0, 0) rotate(-6deg); } }
@keyframes float25 { 0% { transform: translate(0, 0) rotate(17deg); } 50% { transform: translate(9px, 6px) rotate(22deg); } 100% { transform: translate(0, 0) rotate(17deg); } }
@keyframes float26 { 0% { transform: translate(0, 0) rotate(-13deg); } 50% { transform: translate(-8px, 10px) rotate(-18deg); } 100% { transform: translate(0, 0) rotate(-13deg); } }
@keyframes float27 { 0% { transform: translate(0, 0) rotate(28deg); } 50% { transform: translate(10px, 7px) rotate(33deg); } 100% { transform: translate(0, 0) rotate(28deg); } }
@keyframes float28 { 0% { transform: translate(0, 0) rotate(-23deg); } 50% { transform: translate(-7px, 9px) rotate(-28deg); } 100% { transform: translate(0, 0) rotate(-23deg); } }
@keyframes float29 { 0% { transform: translate(0, 0) rotate(9deg); } 50% { transform: translate(4px, 5px) rotate(14deg); } 100% { transform: translate(0, 0) rotate(9deg); } }
@keyframes float30 { 0% { transform: translate(0, 0) rotate(-4deg); } 50% { transform: translate(-3px, 6px) rotate(-9deg); } 100% { transform: translate(0, 0) rotate(-4deg); } }
@keyframes float31 { 0% { transform: translate(0, 0) rotate(14deg); } 50% { transform: translate(5px, 4px) rotate(19deg); } 100% { transform: translate(0, 0) rotate(14deg); } }
@keyframes float32 { 0% { transform: translate(0, 0) rotate(-16deg); } 50% { transform: translate(-2px, 5px) rotate(-21deg); } 100% { transform: translate(0, 0) rotate(-16deg); } }
@keyframes float33 { 0% { transform: translate(0, 0) rotate(11deg); } 50% { transform: translate(6px, 5px) rotate(16deg); } 100% { transform: translate(0, 0) rotate(11deg); } }
@keyframes float34 { 0% { transform: translate(0, 0) rotate(-9deg); } 50% { transform: translate(-4px, 6px) rotate(-14deg); } 100% { transform: translate(0, 0) rotate(-9deg); } }
@keyframes float35 { 0% { transform: translate(0, 0) rotate(19deg); } 50% { transform: translate(3px, 4px) rotate(24deg); } 100% { transform: translate(0, 0) rotate(19deg); } }
@keyframes float36 { 0% { transform: translate(0, 0) rotate(-14deg); } 50% { transform: translate(-5px, 7px) rotate(-19deg); } 100% { transform: translate(0, 0) rotate(-14deg); } }
@keyframes float37 { 0% { transform: translate(0, 0) rotate(26deg); } 50% { transform: translate(7px, 5px) rotate(31deg); } 100% { transform: translate(0, 0) rotate(26deg); } }
@keyframes float38 { 0% { transform: translate(0, 0) rotate(-21deg); } 50% { transform: translate(-6px, 8px) rotate(-26deg); } 100% { transform: translate(0, 0) rotate(-21deg); } }
@keyframes float39 { 0% { transform: translate(0, 0) rotate(13deg); } 50% { transform: translate(8px, 6px) rotate(18deg); } 100% { transform: translate(0, 0) rotate(13deg); } }
@keyframes float40 { 0% { transform: translate(0, 0) rotate(-11deg); } 50% { transform: translate(-9px, 7px) rotate(-16deg); } 100% { transform: translate(0, 0) rotate(-11deg); } }

/* Subtle float animations */
@keyframes float1 {
    0% { transform: rotate(25deg) translate(0, 0); }
    25% { transform: rotate(28deg) translate(3px, 3px); }
    50% { transform: rotate(25deg) translate(0, 6px); }
    75% { transform: rotate(22deg) translate(-3px, 3px); }
    100% { transform: rotate(25deg) translate(0, 0); }
}

@keyframes float2 {
    0% { transform: rotate(-15deg) translate(0, 0); }
    25% { transform: rotate(-17deg) translate(-4px, 4px); }
    50% { transform: rotate(-15deg) translate(0, 8px); }
    75% { transform: rotate(-13deg) translate(4px, 4px); }
    100% { transform: rotate(-15deg) translate(0, 0); }
}

/* Additional sea glass pieces - 40 more pieces */
/* Deep underwater pieces */
.sea-glass-37 { width: 10vw; height: 10vw; top: 5%; left: 2%; animation: float41 70s infinite linear; border-radius: 45% 55% 60% 40% / 35% 65% 40% 60%; background-color: rgba(80, 180, 160, 0.06); }
.sea-glass-38 { width: 7vw; height: 7vw; top: 3%; left: 22%; animation: float42 65s infinite linear; border-radius: 55% 45% 40% 60% / 55% 45% 50% 50%; background-color: rgba(90, 200, 170, 0.05); }
.sea-glass-39 { width: 9vw; height: 9vw; top: 8%; left: 42%; animation: float43 80s infinite linear; border-radius: 35% 65% 50% 50% / 45% 55% 60% 40%; background-color: rgba(70, 190, 160, 0.04); }
.sea-glass-40 { width: 6vw; height: 6vw; top: 6%; left: 62%; animation: float44 55s infinite linear; border-radius: 65% 35% 40% 60% / 35% 65% 55% 45%; background-color: rgba(85, 195, 175, 0.06); }
.sea-glass-41 { width: 11vw; height: 11vw; top: 4%; left: 82%; animation: float45 85s infinite linear; border-radius: 40% 60% 50% 50% / 60% 40% 45% 55%; background-color: rgba(95, 205, 175, 0.05); }

/* Surface-level pieces */
.sea-glass-42 { width: 13vw; height: 13vw; top: 25%; left: 7%; animation: float46 75s infinite linear; border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%; background-color: rgba(110, 225, 195, 0.03); }
.sea-glass-43 { width: 8vw; height: 8vw; top: 22%; left: 27%; animation: float47 60s infinite linear; border-radius: 60% 40% 45% 55% / 55% 45% 40% 60%; background-color: rgba(105, 215, 195, 0.035); }
.sea-glass-44 { width: 15vw; height: 15vw; top: 28%; left: 47%; animation: float48 90s infinite linear; border-radius: 45% 55% 50% 50% / 50% 50% 60% 40%; background-color: rgba(100, 220, 190, 0.025); }
.sea-glass-45 { width: 9vw; height: 9vw; top: 24%; left: 67%; animation: float49 65s infinite linear; border-radius: 55% 45% 65% 35% / 45% 55% 35% 65%; background-color: rgba(115, 235, 200, 0.03); }
.sea-glass-46 { width: 12vw; height: 12vw; top: 29%; left: 87%; animation: float50 80s infinite linear; border-radius: 40% 60% 35% 65% / 65% 35% 55% 45%; background-color: rgba(120, 230, 200, 0.04); }

/* Mid-depth scattered pieces */
.sea-glass-47 { width: 6vw; height: 6vw; top: 45%; left: 12%; animation: float51 55s infinite linear; border-radius: 60% 40% 55% 45% / 45% 55% 50% 50%; }
.sea-glass-48 { width: 14vw; height: 14vw; top: 48%; left: 32%; animation: float52 85s infinite linear; border-radius: 50% 50% 40% 60% / 60% 40% 45% 55%; }
.sea-glass-49 { width: 7vw; height: 7vw; top: 43%; left: 52%; animation: float53 60s infinite linear; border-radius: 45% 55% 60% 40% / 50% 50% 60% 40%; }
.sea-glass-50 { width: 11vw; height: 11vw; top: 49%; left: 72%; animation: float54 75s infinite linear; border-radius: 55% 45% 50% 50% / 45% 55% 40% 60%; }
.sea-glass-51 { width: 9vw; height: 9vw; top: 44%; left: 92%; animation: float55 70s infinite linear; border-radius: 40% 60% 45% 55% / 55% 45% 50% 50%; }

/* Small scattered pieces across the screen */
.sea-glass-52 { width: 4vw; height: 4vw; top: 12%; left: 18%; animation: float56 45s infinite linear; border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%; background-color: rgba(85, 195, 175, 0.05); }
.sea-glass-53 { width: 3vw; height: 3vw; top: 18%; left: 38%; animation: float57 40s infinite linear; border-radius: 45% 55% 40% 60% / 60% 40% 50% 50%; background-color: rgba(90, 200, 180, 0.04); }
.sea-glass-54 { width: 5vw; height: 5vw; top: 14%; left: 58%; animation: float58 50s infinite linear; border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; background-color: rgba(95, 205, 185, 0.06); }
.sea-glass-55 { width: 4vw; height: 4vw; top: 19%; left: 78%; animation: float59 45s infinite linear; border-radius: 50% 50% 45% 55% / 55% 45% 60% 40%; background-color: rgba(100, 210, 190, 0.05); }
.sea-glass-56 { width: 3vw; height: 3vw; top: 36%; left: 16%; animation: float60 40s infinite linear; border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%; background-color: rgba(105, 215, 185, 0.04); }
.sea-glass-57 { width: 5vw; height: 5vw; top: 32%; left: 36%; animation: float61 50s infinite linear; border-radius: 55% 45% 60% 40% / 40% 60% 50% 50%; background-color: rgba(110, 220, 190, 0.06); }
.sea-glass-58 { width: 4vw; height: 4vw; top: 38%; left: 56%; animation: float62 45s infinite linear; border-radius: 60% 40% 45% 55% / 55% 45% 40% 60%; background-color: rgba(115, 225, 195, 0.05); }
.sea-glass-59 { width: 3vw; height: 3vw; top: 34%; left: 76%; animation: float63 40s infinite linear; border-radius: 45% 55% 50% 50% / 50% 50% 55% 45%; background-color: rgba(120, 230, 200, 0.04); }

/* Bottom area pieces */
.sea-glass-60 { width: 15vw; height: 15vw; top: 67%; left: 5%; animation: float64 85s infinite linear; border-radius: 55% 45% 60% 40% / 40% 60% 50% 50%; background-color: rgba(75, 185, 165, 0.035); }
.sea-glass-61 { width: 10vw; height: 10vw; top: 72%; left: 25%; animation: float65 70s infinite linear; border-radius: 45% 55% 50% 50% / 60% 40% 45% 55%; background-color: rgba(80, 190, 170, 0.04); }
.sea-glass-62 { width: 18vw; height: 18vw; top: 69%; left: 45%; animation: float66 95s infinite linear; border-radius: 60% 40% 45% 55% / 50% 50% 40% 60%; background-color: rgba(85, 195, 175, 0.03); }
.sea-glass-63 { width: 12vw; height: 12vw; top: 74%; left: 65%; animation: float67 75s infinite linear; border-radius: 50% 50% 60% 40% / 45% 55% 50% 50%; background-color: rgba(90, 200, 180, 0.035); }
.sea-glass-64 { width: 14vw; height: 14vw; top: 70%; left: 85%; animation: float68 80s infinite linear; border-radius: 45% 55% 50% 50% / 55% 45% 60% 40%; background-color: rgba(95, 205, 185, 0.03); }

/* Tiny sparkle pieces */
.sea-glass-65 { width: 2vw; height: 2vw; top: 25%; left: 8%; animation: float69 35s infinite linear; border-radius: 50%; background-color: rgba(130, 240, 210, 0.07); }
.sea-glass-66 { width: 2.5vw; height: 2.5vw; top: 55%; left: 18%; animation: float70 30s infinite linear; border-radius: 50%; background-color: rgba(120, 230, 200, 0.06); }
.sea-glass-67 { width: 1.8vw; height: 1.8vw; top: 35%; left: 28%; animation: float71 25s infinite linear; border-radius: 50%; background-color: rgba(110, 220, 190, 0.07); }
.sea-glass-68 { width: 2.2vw; height: 2.2vw; top: 65%; left: 38%; animation: float72 32s infinite linear; border-radius: 50%; background-color: rgba(100, 210, 180, 0.06); }
.sea-glass-69 { width: 1.5vw; height: 1.5vw; top: 45%; left: 48%; animation: float73 28s infinite linear; border-radius: 50%; background-color: rgba(130, 240, 210, 0.07); }
.sea-glass-70 { width: 2vw; height: 2vw; top: 75%; left: 58%; animation: float74 35s infinite linear; border-radius: 50%; background-color: rgba(120, 230, 200, 0.06); }
.sea-glass-71 { width: 2.5vw; height: 2.5vw; top: 15%; left: 68%; animation: float75 30s infinite linear; border-radius: 50%; background-color: rgba(110, 220, 190, 0.07); }
.sea-glass-72 { width: 1.8vw; height: 1.8vw; top: 85%; left: 78%; animation: float76 25s infinite linear; border-radius: 50%; background-color: rgba(100, 210, 180, 0.06); }

/* Edge pieces that peek in from corners */
.sea-glass-73 { width: 12vw; height: 12vw; top: -3%; left: -3%; animation: float77 75s infinite linear; border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%; background-color: rgba(90, 200, 180, 0.04); }
.sea-glass-74 { width: 14vw; height: 14vw; top: -5%; right: -5%; animation: float78 85s infinite linear; border-radius: 60% 40% 45% 55% / 55% 45% 40% 60%; background-color: rgba(100, 210, 190, 0.035); }
.sea-glass-75 { width: 13vw; height: 13vw; bottom: -4%; left: -4%; animation: float79 80s infinite linear; border-radius: 50% 50% 40% 60% / 45% 55% 60% 40%; background-color: rgba(110, 220, 200, 0.04); }
.sea-glass-76 { width: 15vw; height: 15vw; bottom: -6%; right: -6%; animation: float80 90s infinite linear; border-radius: 45% 55% 60% 40% / 60% 40% 50% 50%; background-color: rgba(120, 230, 210, 0.035); }

/* Additional float animations */
@keyframes float41 { 0% { transform: translate(0, 0) rotate(12deg); } 50% { transform: translate(7px, 9px) rotate(17deg); } 100% { transform: translate(0, 0) rotate(12deg); } }
@keyframes float42 { 0% { transform: translate(0, 0) rotate(-8deg); } 50% { transform: translate(-6px, 8px) rotate(-13deg); } 100% { transform: translate(0, 0) rotate(-8deg); } }
@keyframes float43 { 0% { transform: translate(0, 0) rotate(22deg); } 50% { transform: translate(9px, 7px) rotate(27deg); } 100% { transform: translate(0, 0) rotate(22deg); } }
@keyframes float44 { 0% { transform: translate(0, 0) rotate(-16deg); } 50% { transform: translate(-5px, 10px) rotate(-21deg); } 100% { transform: translate(0, 0) rotate(-16deg); } }
@keyframes float45 { 0% { transform: translate(0, 0) rotate(9deg); } 50% { transform: translate(8px, 6px) rotate(14deg); } 100% { transform: translate(0, 0) rotate(9deg); } }
@keyframes float46 { 0% { transform: translate(0, 0) rotate(-24deg); } 50% { transform: translate(-9px, 11px) rotate(-29deg); } 100% { transform: translate(0, 0) rotate(-24deg); } }
@keyframes float47 { 0% { transform: translate(0, 0) rotate(15deg); } 50% { transform: translate(6px, 7px) rotate(20deg); } 100% { transform: translate(0, 0) rotate(15deg); } }
@keyframes float48 { 0% { transform: translate(0, 0) rotate(-13deg); } 50% { transform: translate(-8px, 9px) rotate(-18deg); } 100% { transform: translate(0, 0) rotate(-13deg); } }
@keyframes float49 { 0% { transform: translate(0, 0) rotate(27deg); } 50% { transform: translate(7px, 6px) rotate(32deg); } 100% { transform: translate(0, 0) rotate(27deg); } }
@keyframes float50 { 0% { transform: translate(0, 0) rotate(-19deg); } 50% { transform: translate(-10px, 8px) rotate(-24deg); } 100% { transform: translate(0, 0) rotate(-19deg); } }
@keyframes float51 { 0% { transform: translate(0, 0) rotate(11deg); } 50% { transform: translate(5px, 7px) rotate(16deg); } 100% { transform: translate(0, 0) rotate(11deg); } }
@keyframes float52 { 0% { transform: translate(0, 0) rotate(-26deg); } 50% { transform: translate(-9px, 12px) rotate(-31deg); } 100% { transform: translate(0, 0) rotate(-26deg); } }
@keyframes float53 { 0% { transform: translate(0, 0) rotate(18deg); } 50% { transform: translate(6px, 5px) rotate(23deg); } 100% { transform: translate(0, 0) rotate(18deg); } }
@keyframes float54 { 0% { transform: translate(0, 0) rotate(-11deg); } 50% { transform: translate(-7px, 8px) rotate(-16deg); } 100% { transform: translate(0, 0) rotate(-11deg); } }
@keyframes float55 { 0% { transform: translate(0, 0) rotate(24deg); } 50% { transform: translate(8px, 6px) rotate(29deg); } 100% { transform: translate(0, 0) rotate(24deg); } }
@keyframes float56 { 0% { transform: translate(0, 0) rotate(-7deg); } 50% { transform: translate(-4px, 5px) rotate(-12deg); } 100% { transform: translate(0, 0) rotate(-7deg); } }
@keyframes float57 { 0% { transform: translate(0, 0) rotate(13deg); } 50% { transform: translate(3px, 4px) rotate(18deg); } 100% { transform: translate(0, 0) rotate(13deg); } }
@keyframes float58 { 0% { transform: translate(0, 0) rotate(-21deg); } 50% { transform: translate(-5px, 6px) rotate(-26deg); } 100% { transform: translate(0, 0) rotate(-21deg); } }
@keyframes float59 { 0% { transform: translate(0, 0) rotate(10deg); } 50% { transform: translate(4px, 3px) rotate(15deg); } 100% { transform: translate(0, 0) rotate(10deg); } }
@keyframes float60 { 0% { transform: translate(0, 0) rotate(-16deg); } 50% { transform: translate(-3px, 5px) rotate(-21deg); } 100% { transform: translate(0, 0) rotate(-16deg); } }
@keyframes float61 { 0% { transform: translate(0, 0) rotate(23deg); } 50% { transform: translate(5px, 4px) rotate(28deg); } 100% { transform: translate(0, 0) rotate(23deg); } }
@keyframes float62 { 0% { transform: translate(0, 0) rotate(-9deg); } 50% { transform: translate(-4px, 6px) rotate(-14deg); } 100% { transform: translate(0, 0) rotate(-9deg); } }
@keyframes float63 { 0% { transform: translate(0, 0) rotate(14deg); } 50% { transform: translate(3px, 3px) rotate(19deg); } 100% { transform: translate(0, 0) rotate(14deg); } }
@keyframes float64 { 0% { transform: translate(0, 0) rotate(-25deg); } 50% { transform: translate(-8px, 10px) rotate(-30deg); } 100% { transform: translate(0, 0) rotate(-25deg); } }
@keyframes float65 { 0% { transform: translate(0, 0) rotate(17deg); } 50% { transform: translate(7px, 6px) rotate(22deg); } 100% { transform: translate(0, 0) rotate(17deg); } }
@keyframes float66 { 0% { transform: translate(0, 0) rotate(-12deg); } 50% { transform: translate(-9px, 11px) rotate(-17deg); } 100% { transform: translate(0, 0) rotate(-12deg); } }
@keyframes float67 { 0% { transform: translate(0, 0) rotate(28deg); } 50% { transform: translate(8px, 7px) rotate(33deg); } 100% { transform: translate(0, 0) rotate(28deg); } }
@keyframes float68 { 0% { transform: translate(0, 0) rotate(-20deg); } 50% { transform: translate(-7px, 9px) rotate(-25deg); } 100% { transform: translate(0, 0) rotate(-20deg); } }
@keyframes float69 { 0% { transform: translate(0, 0) rotate(9deg); } 50% { transform: translate(3px, 2px) rotate(14deg); } 100% { transform: translate(0, 0) rotate(9deg); } }
@keyframes float70 { 0% { transform: translate(0, 0) rotate(-15deg); } 50% { transform: translate(-2px, 3px) rotate(-20deg); } 100% { transform: translate(0, 0) rotate(-15deg); } }
@keyframes float71 { 0% { transform: translate(0, 0) rotate(6deg); } 50% { transform: translate(2px, 2px) rotate(11deg); } 100% { transform: translate(0, 0) rotate(6deg); } }
@keyframes float72 { 0% { transform: translate(0, 0) rotate(-11deg); } 50% { transform: translate(-3px, 2px) rotate(-16deg); } 100% { transform: translate(0, 0) rotate(-11deg); } }
@keyframes float73 { 0% { transform: translate(0, 0) rotate(13deg); } 50% { transform: translate(2px, 3px) rotate(18deg); } 100% { transform: translate(0, 0) rotate(13deg); } }
@keyframes float74 { 0% { transform: translate(0, 0) rotate(-8deg); } 50% { transform: translate(-2px, 4px) rotate(-13deg); } 100% { transform: translate(0, 0) rotate(-8deg); } }
@keyframes float75 { 0% { transform: translate(0, 0) rotate(18deg); } 50% { transform: translate(3px, 2px) rotate(23deg); } 100% { transform: translate(0, 0) rotate(18deg); } }
@keyframes float76 { 0% { transform: translate(0, 0) rotate(-13deg); } 50% { transform: translate(-2px, 3px) rotate(-18deg); } 100% { transform: translate(0, 0) rotate(-13deg); } }
@keyframes float77 { 0% { transform: translate(0, 0) rotate(19deg); } 50% { transform: translate(5px, 7px) rotate(24deg); } 100% { transform: translate(0, 0) rotate(19deg); } }
@keyframes float78 { 0% { transform: translate(0, 0) rotate(-22deg); } 50% { transform: translate(-6px, 8px) rotate(-27deg); } 100% { transform: translate(0, 0) rotate(-22deg); } }
@keyframes float79 { 0% { transform: translate(0, 0) rotate(16deg); } 50% { transform: translate(7px, 5px) rotate(21deg); } 100% { transform: translate(0, 0) rotate(16deg); } }
@keyframes float80 { 0% { transform: translate(0, 0) rotate(-24deg); } 50% { transform: translate(-8px, 9px) rotate(-29deg); } 100% { transform: translate(0, 0) rotate(-24deg); } }

header, .container > h1 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ecf0f1;
    font-weight: 700;
    font-size: 2em;
    margin-bottom: 1em;
}

header {
    padding: 50px 0;
    background-color: rgba(44, 62, 80, 0.8);
    margin-bottom: 30px;
}

.section {
    max-width: 800px;  /* Back to wider width */
    margin: 20px auto;
    padding: 20px;
    background-color: #2c3e50;  /* Dark blue/gray background */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);  /* Slightly stronger shadow */
}

.section div {
    max-width: 600px;  /* Content area takes up roughly 2/3 of the section */
    margin: 0 auto;
}

.section p {
    text-align: left;
    margin-bottom: 20px;
    color: #ecf0f1;  /* Light gray/white text */
    font-size: 1.1em;
}

.section h2 {
    color: #ecf0f1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-size: 1.5em;
    margin-top: 0.5em;
    margin-bottom: 1em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Center only card titles */
.section > h2 {
    text-align: center;
}

/* Keep blog content headers left-aligned */
.blog-content h2 {
    text-align: left;
}

.section li {
    color: #ecf0f1;  /* Light gray/white list items */
    margin-bottom: 10px;
    font-size: 1.1em;
}

.section ol, .section ul {
    margin-left: 1.5em;  /* Add some indent for lists */
    margin-bottom: 20px;
}

a {
    color: #3498db;  /* Bright blue for links */
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* Add back button styling */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgba(44, 62, 80, 0.7);
    color: #ecf0f1;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.back-button:hover {
    background-color: rgba(52, 73, 94, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.back-button::before {
    content: "←";
    margin-right: 8px;
    font-size: 1.1em;
}

.back-button:hover {
    border-bottom-color: transparent;
}
