/* ===================================
   FROGGY WEBSITE - GLOBAL STYLES
   =================================== */

/* CSS Variables for Theme Colors */
:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-green: #7cb342;
    --light-green: #9ccc65;
    --lightest-green: #c5e1a5;
    --dark-green: #1b3010;
    --white: #ffffff;
    --off-white: #f8fdf5;
    --gray-light: #e8f5e9;
    --gray-medium: #a5d6a7;
    --text-dark: #1b5e20;
    --text-light: #ffffff;
    --shadow-color: rgba(45, 80, 22, 0.15);
    --glow-color: rgba(124, 179, 66, 0.6);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-light) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===================================
   BACKGROUND ANIMATION - BUBBLES
   =================================== */

.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(156, 204, 101, 0.3), rgba(124, 179, 66, 0.1));
    border-radius: 50%;
    opacity: 0.8;
    animation: rise linear infinite;
    border: 2px solid rgba(124, 179, 66, 0.4);
    
}

@keyframes rise {
    0% {
        bottom: -100px;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 110vh;
        opacity: 0;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    text-align: center;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vw;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.image-placeholder {
    width: 350px;
    height: 350px;
    max-width: 80vw;
    max-height: 80vw;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--accent-green);
    box-shadow: 0 20px 60px var(--shadow-color);
    position: relative;
    z-index: 1;
}

.placeholder-text {
    font-size: 120px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.frog-main-image {
    width: 85%;
    height: 85%;
    object-fit: contain;
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

/* Main Title */
.main-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
}

.dollar-sign {
    color: var(--secondary-green);
    font-weight: 700;
}

.subtitle {
    font-size: 28px;
    color: var(--secondary-green);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Contract Address Box */
.contract-box {
    background: white;
    border: 2px solid var(--light-green);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px var(--shadow-color);
    width: 100%;
}

.contract-label {
    display: block;
    font-size: 14px;
    color: var(--secondary-green);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contract-address-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.contract-address {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.3s;
    word-break: break-all;
}

.contract-address:focus {
    border-color: var(--accent-green);
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.copy-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--secondary-green);
    border: 2px solid var(--light-green);
}

.btn-secondary:hover {
    background: var(--lightest-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.btn-community {
    background: white;
    color: var(--secondary-green);
    border: 2px solid var(--light-green);
    margin-top: 20px;
}

.btn-community:hover {
    background: var(--lightest-green);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-icon {
    font-size: 18px;
}

.arrow-down {
    margin-left: 5px;
    transition: transform 0.3s;
}

.btn-community:hover .arrow-down {
    transform: translateY(3px);
}

/* ===================================
   LEGEND SECTION
   =================================== */

.legend-section {
    padding: 100px 20px;
    background: white;
    width: 100%;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-green);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--secondary-green);
    margin-bottom: 60px;
    font-style: italic;
}

.legend-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.legend-card {
    background: linear-gradient(135deg, var(--off-white) 0%, white 100%);
    border: 2px solid var(--light-green);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    text-align: center;
}

.legend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(124, 179, 66, 0.3);
    border-color: var(--accent-green);
}

.card-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--off-white) 100%);
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* Desktop: 4 columns */
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 1400px;  /* Add this */
    margin-left: auto;   /* Add this */
    margin-right: auto;  /* Add this */
}

/* Tablet */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);  /* 3 columns */
    }
}

.gallery-item {
    /* aspect-ratio: 1; */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* or use 'contain' if you don't want cropping */
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 36px rgba(124, 179, 66, 0.4);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--light-green) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.placeholder-icon {
    font-size: 80px;
}

/* ===================================
   GENERATOR SECTION
   =================================== */

.generator-section {
    padding: 100px 20px;
    background: white;
    width: 100%;
}

.generator-subtitle {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 10px;
}

.generator-container {
    max-width: 800px;
    margin: 50px auto 0;
    width: 100%;
}

.generator-input-area {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.generator-input {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    border: 2px solid var(--light-green);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.generator-input:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.2);
}

.btn-generate {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 179, 66, 0.4);
}

.generator-output {
    width: 100%;
    aspect-ratio: 1;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-light) 100%);
    border: 3px dashed var(--light-green);
    overflow: hidden;
}

.output-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.output-icon {
    font-size: 80px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1); 
    }
}

/* ===================================
   GUESTBOOK SECTION
   =================================== */

.guestbook-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--off-white) 100%);
    width: 100%;
}

.guestbook-container {
    max-width: 800px;
    margin: 50px auto 0;
    width: 100%;
}

.guestbook-input-area {
    background: white;
    border: 2px solid var(--light-green);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px var(--shadow-color);
}

.guestbook-textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    outline: none;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.guestbook-textarea:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 179, 66, 0.4);
}

.guestbook-messages {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border: 2px dashed var(--light-green);
    border-radius: 16px;
}

.empty-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
}

.message-card {
    background: white;
    border: 2px solid var(--light-green);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px var(--shadow-color);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
    word-wrap: break-word;
}

.message-meta {
    font-size: 14px;
    color: var(--secondary-green);
    opacity: 0.8;
}

/* ===================================
   CHART SECTION
   =================================== */

.chart-section {
    padding: 100px 20px;
    background: white;
    width: 100%;
}

.chart-container {
    max-width: 1000px;
    margin: 50px auto 0;
    aspect-ratio: 16/9;
    min-height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-light) 100%);
    border: 3px solid var(--light-green);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-color);
    width: 100%;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.chart-icon {
    font-size: 80px;
    color: var(--accent-green);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 60px 20px 30px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 16px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lightest-green);
    transition: width 0.3s;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: var(--lightest-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 42px;
    }
    
    .legend-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 60px 15px 40px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .main-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-image-container {
        width: 280px;
        height: 280px;
        margin-bottom: 25px;
    }
    
    .image-placeholder {
        width: 240px;
        height: 240px;
        border: 3px solid var(--accent-green);
    }
    
    .placeholder-text {
        font-size: 70px;
    }
    
    .frog-main-image {
        width: 90%;
        height: 90%;
    }
    
    .contract-box {
        padding: 15px;
    }
    
    .contract-address-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .contract-address {
        width: 100%;
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .copy-btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .legend-section,
    .gallery-section,
    .generator-section,
    .guestbook-section,
    .chart-section {
        padding: 60px 15px;
    }
    
    .legend-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legend-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        font-size: 50px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .generator-subtitle {
        font-size: 24px;
    }
    
    .generator-input-area {
        flex-direction: column;
        gap: 12px;
    }
    
    .generator-input {
        width: 100%;
    }
    
    .btn-generate {
        width: 100%;
    }
    
    .generator-output {
        max-width: 100%;
    }
    
    .guestbook-input-area {
        padding: 20px 15px;
    }
    
    .chart-container {
        min-height: 300px;
    }
    
    .chart-icon,
    .output-icon {
        font-size: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-logo h3 {
        font-size: 28px;
    }
}

/* ===================================
   RESPONSIVE DESIGN - SMALL MOBILE
   =================================== */

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px 30px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .hero-image-container {
        width: 220px;
        height: 220px;
    }
    
    .image-placeholder {
        width: 190px;
        height: 190px;
    }
    
    .placeholder-text {
        font-size: 55px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-text {
        font-size: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .generator-subtitle {
        font-size: 22px;
    }
    
    .footer-logo h3 {
        font-size: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Selection Color */
::selection {
    background: var(--accent-green);
    color: white;
}

::-moz-selection {
    background: var(--accent-green);
    color: white;
}

/* Prevent horizontal scroll on all elements */
section {
    width: 100%;
    overflow-x: hidden;
}

/* ===================================
   SHOUTOUT SECTION (REPLACES GENERATOR)
   =================================== */

.shoutout-section {
    padding: 100px 20px;
    background: white;
    width: 100%;
}

.shoutout-subtitle {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 10px;
}

.shoutout-container {
    max-width: 1000px;
    margin: 50px auto 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Featured Shoutout Display */
.featured-shoutout {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-light) 100%);
    border: 3px solid var(--accent-green);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.shoutout-header {
    text-align: center;
    margin-bottom: 20px;
}

.shoutout-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.shoutout-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 2px solid var(--light-green);
    margin-bottom: 20px;
}

.shoutout-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shoutout-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    text-align: center;
}

.shoutout-placeholder .placeholder-icon {
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
}

.shoutout-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-green);
    margin: 0;
}

.shoutout-placeholder .placeholder-subtext {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    opacity: 0.7;
}

.shoutout-username {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    padding: 15px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--light-green);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shoutout-username:empty::before {
    content: '🐸 Awaiting featured creator...';
    color: var(--secondary-green);
    font-size: 16px;
    opacity: 0.7;
}

/* Submission Form */
.submission-form {
    background: linear-gradient(135deg, var(--lightest-green) 0%, white 100%);
    border: 2px solid var(--light-green);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 24px var(--shadow-color);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-align: center;
}

.form-description {
    text-align: center;
    color: var(--secondary-green);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    background: white;
}

.form-input:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.2);
}

.input-hint {
    display: block;
    font-size: 13px;
    color: var(--secondary-green);
    margin-top: 6px;
    opacity: 0.8;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border: 2px dashed var(--light-green);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-green);
}

.file-upload-label:hover {
    border-color: var(--accent-green);
    background: var(--off-white);
    transform: translateY(-2px);
}

.upload-icon {
    font-size: 24px;
}

/* Image Preview */
.image-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 300px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--light-green);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-preview {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.remove-preview:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

/* Submit Button */
.btn-submit-meme {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit-meme:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 179, 66, 0.4);
}

.btn-submit-meme:active {
    transform: translateY(0);
}

.btn-submit-meme:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Submission Status */
.submission-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.submission-status.success {
    display: block;
    background: rgba(124, 179, 66, 0.1);
    border: 2px solid var(--accent-green);
    color: var(--primary-green);
}

.submission-status.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    color: #cc0000;
}

.submission-status.loading {
    display: block;
    background: rgba(124, 179, 66, 0.05);
    border: 2px solid var(--light-green);
    color: var(--secondary-green);
}

/* Responsive Design for Shoutout Section */
@media (max-width: 968px) {
    .shoutout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .shoutout-section {
        padding: 60px 15px;
    }
    
    .shoutout-subtitle {
        font-size: 24px;
    }
    
    .featured-shoutout {
        padding: 20px;
    }
    
    .submission-form {
        padding: 20px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .shoutout-username {
        font-size: 20px;
    }
}
