/* Advanced Proposal Section - Free Token Offer */

.proposal-section-wrapper {
    width: 100%;
    background: linear-gradient(125deg, #030d43 0%, #051353 40%, #061a6b 100%);
    position: relative;
    overflow: hidden;
    padding: 25px 0;
    margin: 0;
    z-index: 1; /* Ensure it's below the navbar */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 148, 255, 0.25);
    border-bottom: 1px solid rgba(0, 148, 255, 0.3);
    --neon-primary: rgba(0, 148, 255, 0.75);
    --neon-secondary: rgba(157, 78, 221, 0.75);
    --glow-primary: rgba(0, 148, 255, 0.15);
    --glow-secondary: rgba(157, 78, 221, 0.15);
}

/* Add space-themed star field background */
.proposal-section-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 25% 15%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 75% 60%, rgba(157, 78, 221, 0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 80%, rgba(0, 148, 255, 0.6) 0%, transparent 100%),
        radial-gradient(2.5px 2.5px at 15% 25%, rgba(0, 148, 255, 0.7) 0%, transparent 100%),
        radial-gradient(2.5px 2.5px at 90% 85%, rgba(157, 78, 221, 0.8) 0%, transparent 100%);
    background-size: 550px 550px;
    z-index: 0;
    opacity: 0.6;
}

.proposal-section-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(5, 27, 80, 0.5) 0%, transparent 45%),
              radial-gradient(circle at 80% 30%, rgba(19, 51, 174, 0.4) 0%, transparent 40%),
              radial-gradient(circle at 40% 70%, rgba(157, 78, 221, 0.3) 0%, transparent 35%);
    z-index: 1;
    animation: cosmicPulse 15s infinite alternate;
    opacity: 0.6;
}

@keyframes cosmicPulse {
    0% {
        background: radial-gradient(circle at 20% 50%, rgba(5, 27, 80, 0.5) 0%, transparent 45%),
                  radial-gradient(circle at 80% 30%, rgba(19, 51, 174, 0.4) 0%, transparent 40%),
                  radial-gradient(circle at 40% 70%, rgba(157, 78, 221, 0.3) 0%, transparent 35%);
    }
    100% {
        background: radial-gradient(circle at 25% 55%, rgba(5, 27, 80, 0.5) 0%, transparent 45%),
                  radial-gradient(circle at 85% 35%, rgba(19, 51, 174, 0.4) 0%, transparent 40%),
                  radial-gradient(circle at 45% 75%, rgba(157, 78, 221, 0.3) 0%, transparent 35%);
    }
}

/* Add cosmic nebula effect */
.proposal-section-wrapper .cosmic-overlay {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    opacity: 0.07;
    background: linear-gradient(to bottom, transparent, transparent 40%, rgba(157, 78, 221, 0.5) 50%, transparent 60%, transparent);
    animation: cosmic-scan 12s linear infinite;
    z-index: 1;
    transform: rotate(45deg);
}

@keyframes cosmic-scan {
    0% {
        top: -150%;
    }
    100% {
        top: 100%;
    }
}

@keyframes scan-effect {
    0% {
        top: -150%;
    }
    100% {
        top: 100%;
    }
}

/* Tech circuit pattern overlay */
.proposal-section-wrapper:before {
    background: linear-gradient(135deg, rgba(13, 20, 43, 0.8) 0%, rgba(23, 34, 77, 0.8) 100%);
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,20 L70,20 L70,80 L30,80 Z" stroke="white" stroke-width="0.5" fill="none"/><path d="M10,40 L90,40" stroke="white" stroke-width="0.5" fill="none"/><path d="M10,60 L90,60" stroke="white" stroke-width="0.5" fill="none"/><circle cx="30" cy="40" r="3" fill="white"/><circle cx="70" cy="40" r="3" fill="white"/><circle cx="30" cy="60" r="3" fill="white"/><circle cx="70" cy="60" r="3" fill="white"/></svg>');
    mask-size: 100px 100px;
    opacity: 0.06;
}

/* Animated floating particles */
.proposal-floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.proposal-particle {
    position: absolute;
    display: block;
    pointer-events: none;
    width: 4px;
    height: 4px;
    background: rgba(120, 200, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 148, 255, 0.8), 0 0 20px rgba(157, 78, 221, 0.4);
    animation: float-up 15s infinite linear;
}

.proposal-particle:nth-child(1) {
    left: 15%;
    width: 8px;
    height: 8px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.proposal-particle:nth-child(2) {
    left: 35%;
    width: 6px;
    height: 6px;
    animation-delay: 1s;
    animation-duration: 18s;
}

.proposal-particle:nth-child(3) {
    left: 55%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
    animation-duration: 15s;
}

.proposal-particle:nth-child(4) {
    left: 75%;
    width: 7px;
    height: 7px;
    animation-delay: 3s;
    animation-duration: 20s;
}

.proposal-particle:nth-child(5) {
    left: 95%;
    width: 5px;
    height: 5px;
    animation-delay: 4s;
    animation-duration: 16s;
}

@keyframes float-up {
    0% {
        transform: translateY(100%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.1;
    }
}

.proposal-section {
max-width: none;
margin: 0 auto;
display: flex;
flex-direction: column;
padding: 25px;
position: relative;
z-index: 10;
width: 100%;
}

/* Main title with gradient and effects */
.proposal-title {
font-family: 'Inter', sans-serif;
font-size: 32px;
font-weight: 800;
text-align: center;
margin-bottom: 8px;
background: linear-gradient(90deg, #ffffff 0%, #0094ff 60%, #9d4edd 100%);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
position: relative;
display: inline-block;
letter-spacing: 2px;
text-shadow: 0 0 20px rgba(0, 148, 255, 0.6);
text-transform: uppercase;
transform: perspective(500px) translateZ(0);
animation: titleShimmer 6s linear infinite;
font-family: 'Inter', sans-serif;
word-spacing: 5px;
}

@keyframes titleShimmer {
0% {
    background-position: -200% center;
}
100% {
    background-position: 200% center;
}
}

@keyframes title-glow {
0% {
    text-shadow: 0 0 10px rgba(98, 196, 255, 0.4);
}
100% {
    text-shadow: 0 0 20px rgba(98, 196, 255, 0.8), 0 0 30px rgba(98, 196, 255, 0.4);
}
}

.proposal-title:after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
width: 80px;
height: 3px;
background: linear-gradient(90deg, #0094ff, #00e0ff);
border-radius: 2px;
transform: translateX(-50%);
}

/* Subtitle with glow */
.proposal-subtitle {
font-family: 'Inter', sans-serif;
font-size: 16px;
font-weight: 500;
text-align: center;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 15px;
max-width: 800px;
line-height: 1.5;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 5px;
}

.glow-text {
color: #0094ff;
font-weight: 700;
display: inline-block;
position: relative;
animation: pulse-highlight 2s infinite alternate;
text-shadow: 0 0 10px rgba(0, 148, 255, 0.6);
}

.tech-highlight {
color: #9d4edd;
font-weight: 700;
text-shadow: 0 0 10px rgba(157, 78, 221, 0.6);
}

@keyframes pulse-highlight {
0% {
    text-shadow: 0 0 5px rgba(0, 234, 255, 0.4);
}
100% {
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.8);
}
}

/* Main content container */
.proposal-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
gap: 20px;
}

/* Left column - offer details */
/* This is a duplicate definition and can be removed */

.cosmic-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 30% 50%, rgba(157, 78, 221, 0.05), transparent 40%),
            radial-gradient(circle at 70% 20%, rgba(0, 148, 255, 0.05), transparent 30%);
z-index: 1;
animation: cosmic-pulse 10s ease-in-out infinite alternate;
}

@keyframes cosmic-pulse {
0% {
    opacity: 0.3;
}
50% {
    opacity: 0.7;
}
100% {
    opacity: 0.3;
}
}

.proposal-sparkle {
position: absolute;
width: 2px;
height: 2px;
background: #fff;
border-radius: 50%;
z-index: 2;
animation: sparkle-flicker var(--duration, 3s) ease-in-out infinite;
opacity: 0.7;
}

.proposal-sparkle:nth-child(odd) {
background: #0094ff;
}

.proposal-sparkle:nth-child(even) {
background: #9d4edd;
}

@keyframes sparkle-flicker {
0%, 100% {
    opacity: 0.2;
    transform: scale(0.8);
}
50% {
    opacity: 0.9;
    transform: scale(1.5);
}
}

.proposal-details {
display: flex;
flex-direction: row;
width: 100%;
gap: 30px;
padding: 15px;
background: rgba(13, 20, 43, 0.6);
backdrop-filter: blur(10px);
border-radius: 10px;
border: 1px solid rgba(92, 143, 255, 0.2);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
           0 0 20px rgba(0, 148, 255, 0.15);
position: relative;
overflow: hidden;
}

.proposal-details:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
z-index: 5;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 5;
}

/* Highlighted offer text */
.proposal-offer {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
}

.proposal-tech-pill {
    background: linear-gradient(90deg, #0094ff, #9d4edd);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-left: 5px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 148, 255, 0.5);
    animation: pulse-glow 2s infinite alternate;
    vertical-align: middle;
}

.proposal-tech-pill:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 98, 224, 0.5), rgba(0, 194, 255, 0.5));
    border-radius: 20px;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
}

.proposal-offer:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    width: 30px;
    height: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="rgba(61, 185, 255, 0.6)" d="M12 22l-9-6v-8l9-6 9 6v8l-9 6zm0-2.5l7-4.5v-6l-7-4.5-7 4.5v6l7 4.5z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    transform: rotate(-15deg);
    z-index: -1;
}

.proposal-highlight {
    color: #0094ff;
    font-weight: 800;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #0094ff, #4db5ff, #9d4edd);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shine 3s linear infinite;
    letter-spacing: 0.5px;
}

.proposal-highlight:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, rgba(56, 190, 255, 0.3), rgba(98, 233, 255, 0.3));
    z-index: -1;
    border-radius: 3px;
    animation: highlight-pulse 2s infinite alternate;
}

@keyframes highlight-pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes text-shine {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

/* Features list */
.proposal-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.proposal-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.proposal-feature-item:hover {
    transform: translateX(5px);
}

.proposal-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.proposal-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.proposal-feature-icon {
    min-width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(0, 148, 255, 0.4) 0%, rgba(157, 78, 221, 0.45) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 148, 255, 0.4);
}

.proposal-feature-icon i {
    transform: rotate(-45deg);
    font-size: 12px;
    background: linear-gradient(135deg, #ffffff, #4dbaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proposal-feature-icon i {
    font-size: 14px;
}

.proposal-feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* Left column - proposal details */
.proposal-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.proposal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Right column - timer and wallet connection */
.proposal-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Timer container */
.proposal-timer-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
    transform: translateZ(0);
    perspective: 1000px;
}

.proposal-timer-data-rings {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed rgba(0, 148, 255, 0.3);
    border-radius: 50%;
    animation: rotate-ring 20s linear infinite;
}

.proposal-timer-data-rings:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px dashed rgba(157, 78, 221, 0.3);
    border-radius: 50%;
    animation: rotate-ring 30s linear infinite reverse;
}

.proposal-timer-data-rings:after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px dashed rgba(0, 148, 255, 0.2);
    border-radius: 50%;
    animation: rotate-ring 15s linear infinite;
}

@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.proposal-timer-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 26, 57, 0.6) 0%, rgba(29, 43, 80, 0.6) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(38, 128, 235, 0.2);
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid rgba(92, 143, 255, 0.2);
    animation: pulse-ring 4s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(56, 190, 255, 0.1);
    }
    70% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(56, 190, 255, 0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(56, 190, 255, 0);
    }
}

.proposal-timer-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 32, 70, 0.9) 0%, rgba(12, 23, 55, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.4);
}

.proposal-timer-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.proposal-timer-time {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 162, 255, 0.5);
    line-height: 1;
    margin-bottom: 3px;
}

.proposal-timer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Connect wallet button */
.proposal-connect-button {
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0094ff 0%, #9d4edd 100%);
    border: none;
    border-radius: calc(var(--1) * 30);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 148, 255, 0.5), 0 0 15px rgba(157, 78, 221, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 148, 255, 0.3);
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.proposal-connect-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 148, 255, 0.6), 0 0 20px rgba(157, 78, 221, 0.4);
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin-left: -5px;
}

.proposal-action-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-align: center;
    letter-spacing: 0.5px;
    font-style: italic;
}

.proposal-connect-button:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 4px 4px 0 0;
    pointer-events: none;
}

.proposal-connect-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 105, 255, 0.6), 0 0 20px rgba(0, 195, 255, 0.4);
}

.proposal-connect-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(0, 105, 255, 0.4);
}

/* Button shine effect */
.proposal-connect-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(25deg);
    animation: shine-effect 6s infinite;
}

@keyframes shine-effect {
    0% { transform: translateX(-100%) rotate(25deg); }
    20%, 100% { transform: translateX(100%) rotate(25deg); }
}

/* Status message */
.proposal-status {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proposal-status.active {
    opacity: 1;
}

.proposal-status.success {
    color: #4caf50;
}

.proposal-status.error {
    color: #ff5252;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .proposal-title {
        font-size: 24px;
    }
    
    .proposal-subtitle {
        font-size: 14px;
    }
    
    .proposal-offer {
        font-size: 18px;
    }
    
    .proposal-details {
        flex-direction: column;
    }
    
    .proposal-left,
    .proposal-right {
        width: 100%;
    }
    
    .proposal-action {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    
    .proposal-timer-container {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .proposal-connect-button {
        margin-top: 0;
    }
}

@media screen and (max-width: 576px) {
    .proposal-section-wrapper {
        padding: 15px 0;
        margin: 0;
    }
    
    .proposal-section {
        padding: 0 15px;
    }
    
    .proposal-title {
        font-size: 22px;
        letter-spacing: 0.5px;
        word-spacing: normal;
    }
    
    .proposal-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .proposal-details {
        padding: 15px;
        flex-direction: column;
    }
    
    .proposal-left,
    .proposal-right {
        width: 100%;
    }
    
    .proposal-offer {
        font-size: 16px;
    }
    
    .proposal-feature-text {
        font-size: 13px;
    }
    
    .proposal-timer-container {
        width: 120px;
        height: 120px;
    }
    
    .proposal-timer-time {
        font-size: 30px;
    }
    
    .proposal-timer-label {
        font-size: 12px;
    }
    
    .proposal-connect-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .proposal-feature-icon {
        width: 26px;
        height: 26px;
    }
    
    .button-icon {
        width: 20px;
        height: 20px;
    }
    
    .proposal-sparkle {
        display: none;
    }
    
    .proposal-tech-pill {
        font-size: 12px;
        padding: 1px 6px;
    }
    
    .proposal-section-wrapper:after {
        opacity: 0.05;
    }
}
