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

body {
    font-family: 'dm-sans', sans-serif;
    color: #000;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}

:root {
    --background-color: #fff;
    --text-color: #000;
    --accent-color: #EE4B2B;
}

body {
    font-family: 'dm-sans', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color 0.3s, color 0.3s;
}

/* Dark mode styles */
.dark-mode {
    --background-color: #121212;
    --text-color: #fff;
}

.dark-mode body {
    background-color: var(--background-color);
    color: var(--text-color);
}

.dark-mode nav {
    background-color: var(--background-color) !important;
}

.dark-mode nav a {
    color: var(--text-color) !important;
}

.dark-mode hr {
    border-color: var(--text-color) !important;
}

.dark-mode .stat-box img {
    filter: brightness(0.9);
}

.dark-mode .persona-card {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.dark-mode .persona-info {
    background-color: rgba(0, 0, 0, 0.6);
}

.dark-mode .responsive-iframe {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .connector-placeholder {
    border-top-color: #fff;
}

.dark-mode .circle-item {
    background: #121212;
    border-color: #fff;
}

@media (max-width: 768px) {
    .dark-mode .connector-placeholder {
        border-left-color: #fff;
        border-top: none;
    }
}

.dark-mode .fullscreen-image-container {
    background-color: rgba(0, 0, 0, 0.95);
}

.dark-mode .progress-bar {
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
}

.dark-mode .progress-item {
    color: #999;
}

.dark-mode .progress-item.active {
    color: #fff;
}

.dark-mode .progress-item::after {
    background-color: #333;
}

.dark-mode .progress-item.active::after {
    background-color: #EE4B2B;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

/* Progress bar styles */
.progress-bar {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 90;
    padding: 0 30px;
    overflow-x: auto;
    overflow-y: hidden;
}

.progress-container {
    display: flex;
    align-items: center;
    height: 50px;
    min-width: max-content;
}

.progress-item {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    padding: 0 20px;
    transition: color 0.3s ease;
    user-select: none;
}

.progress-item:hover {
    color: var(--accent-color);
}

.progress-item.active {
    color: #000;
    font-weight: 600;
}

.progress-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #ddd;
}

.progress-item:last-child::after {
    display: none;
}

.progress-item.active::after {
    background-color: var(--accent-color);
}

body {
    padding-top: 220px;
}

/* Hero image container */
.img-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    margin: 40px auto;
    cursor: pointer;
    display: block;
    max-width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    cursor: pointer;
    margin: 0 auto;
}

.hero-image svg {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.img-section img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000;
    cursor: pointer;
    margin: 0 auto;
}

/* Zodiac Mapping Visualization Styles */
.zodiac-mapping-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 40px 0;
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 100%;
}

.zodiac-header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.zodiac-header h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #212529;
}

.zodiac-header p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.element-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.element-tab {
    flex: 1;
    padding: 16px 24px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    min-width: 100px;
    white-space: nowrap;
}

.element-tab:hover {
    background: rgba(238, 75, 43, 0.05);
    color: #EE4B2B;
}

.element-tab.active {
    background: white;
    color: #EE4B2B;
    border-bottom-color: #EE4B2B;
}

.element-content {
    display: none;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.element-content.active {
    display: block;
}

.element-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.element-info h5 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #212529;
    font-weight: 500;
}

.element-traits {
    margin-bottom: 16px;
}

.element-traits strong {
    display: block;
    margin-bottom: 6px;
    color: #495057;
    font-size: 0.9rem;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* Element-specific colors */
.fire .color-swatch:nth-child(1) { background: #DC143C; }
.fire .color-swatch:nth-child(2) { background: #FF4500; }
.fire .color-swatch:nth-child(3) { background: #D2691E; }
.fire .color-swatch:nth-child(4) { background: #FFB347; }
.fire .color-swatch:nth-child(5) { background: #FFD700; }

.earth .color-swatch:nth-child(1) { background: #228B22; }
.earth .color-swatch:nth-child(2) { background: #8B4513; }
.earth .color-swatch:nth-child(3) { background: #CD853F; }
.earth .color-swatch:nth-child(4) { background: #9CAF88; }
.earth .color-swatch:nth-child(5) { background: #808000; }

.air .color-swatch:nth-child(1) { background: #4169E1; }
.air .color-swatch:nth-child(2) { background: #FFFFFF; border-color: #ddd; }
.air .color-swatch:nth-child(3) { background: #C0C0C0; }
.air .color-swatch:nth-child(4) { background: #DDA0DD; }
.air .color-swatch:nth-child(5) { background: #708090; }

.water .color-swatch:nth-child(1) { background: #191970; }
.water .color-swatch:nth-child(2) { background: #20B2AA; }
.water .color-swatch:nth-child(3) { background: #008B8B; }
.water .color-swatch:nth-child(4) { background: #007FFF; }
.water .color-swatch:nth-child(5) { background: #2E8B57; }

.element-mapping p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
}

.sign-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.sign-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #EE4B2B;
}

.sign-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.sign-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
}

.sign-dates {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: right;
    line-height: 1.3;
}

.sign-traits {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-affinities {
    background: #f8f9fa;
    padding: 14px;
    border-radius: 6px;
    margin-top: 12px;
}

.product-affinities strong {
    display: block;
    margin-bottom: 6px;
    color: #EE4B2B;
    font-size: 0.85rem;
}

.product-affinities ul {
    list-style: none;
    font-size: 0.8rem;
    color: #495057;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.product-affinities li {
    margin-bottom: 3px;
    position: relative;
    padding-left: 10px;
}

.product-affinities li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #EE4B2B;
}

.methodology-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #EE4B2B;
    width: 100%;
    box-sizing: border-box;
}

.methodology-note h6 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #212529;
    font-weight: 600;
}

.methodology-note p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Dark mode zodiac compatibility */
.dark-mode .zodiac-mapping-container {
    background: #1e1e1e;
    border-color: #333;
}

.dark-mode .zodiac-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-bottom-color: #333;
}

.dark-mode .zodiac-header h4,
.dark-mode .element-info h5,
.dark-mode .sign-name {
    color: #fff;
}

.dark-mode .zodiac-header p,
.dark-mode .element-traits strong,
.dark-mode .sign-dates {
    color: #ccc;
}

.dark-mode .element-tabs {
    background: #2a2a2a;
    border-bottom-color: #333;
}

.dark-mode .element-tab {
    color: #999;
}

.dark-mode .element-tab.active {
    background: #1e1e1e;
    color: #EE4B2B;
}

.dark-mode .element-overview,
.dark-mode .product-affinities,
.dark-mode .methodology-note {
    background: #2a2a2a;
}

.dark-mode .sign-card {
    background: #1e1e1e;
    border-color: #333;
}

.dark-mode .sign-card:hover {
    border-color: #EE4B2B;
}

.dark-mode .element-mapping p,
.dark-mode .sign-traits,
.dark-mode .product-affinities ul,
.dark-mode .methodology-note p {
    color: #ccc;
}

/* ── Custom cursor ── */
html { cursor: none; }
a, button, [role="button"], input, label, select, textarea { cursor: none; }
.cursor {
    width: 12px;
    height: 12px;
    background: #040202;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    left: -20px;
    top: -20px;
    transform: translate(-50%, -50%);
    transition: width 0.18s ease, height 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}
.cursor.large  { width: 18px; height: 18px; }
.cursor.hidden { opacity: 0; }

/* Navigation */
nav {
    margin-bottom: 0;
    color: #000;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    overflow: hidden;
}

nav a {
    float: left;
    display: block;
    width: 10%;
    font-family: "dm-sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #040202;
    text-decoration: none;
    text-align: center;
    padding: 14px 40px;
    position: relative;
    transition: color 0.25s ease;
    cursor: none;
}
nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #040202;
    border-radius: 20px;
    transform: scale(0.6);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: -1;
}
nav a:hover::before { transform: scale(0.6); opacity: 1; }
nav a:hover { color: #ffffff; }

.dark-mode nav {
    background-color: #121212 !important;
}
.dark-mode nav a {
    color: #fff !important;
}
.dark-mode nav a:hover {
    color: #121212 !important;
}
.dark-mode nav a::before {
    background: #fff !important;
}

.dark-mode-toggle {
    float: right;
    padding: 14px 40px;
    background: none;
    border: none;
    cursor: none;
    color: inherit;
    font-size: 16px;
}

p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

ul {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-left: 20px;
}

ol {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Main content grid */
.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.title-section {
    grid-column: 1 / 3;
    margin-bottom: 0px;
}

.subtitle-section {
    grid-column: 3 / 6;
    margin-bottom: 0px;
}

.title {
    font-size: 6rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 400;
}

.details {
    grid-column: 1 / 2;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
    padding-right: 20px;
}

.details div {
    margin-bottom: 12px;
}

.project-info {
    grid-column: 3 / 6;
    font-size: 1rem;
    line-height: 1.6;
}

.project-info p {
    margin-bottom: 0px;
}

hr {
    margin-top: 10px;
    margin-bottom: 15px;
    border-top: 1px solid #000;
    z-index: 50;
}

.content-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.content-title {
    grid-column: 1 / 2;
    font-size: 1rem;
    font-weight: 400;
}

.content-details {
    grid-column: 3 / 6;
}

.content-details .big-text {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 300;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    margin: 30px 0;
}

.quote p {
    margin-bottom: 5px;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 40px;
}

.stat-box {
    padding: 20px;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat-box:last-child {
    border-right: none;
}

.large-number {
    font-size: 70px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

/* Fullscreen image functionality */
.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.fullscreen-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.fullscreen-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.bottomwrap {
    display: grid;
    grid-template-columns: 4fr 1fr;
    grid-template-areas: 
        "empty"
        "bw";
    gap: 40px;
    margin: 40px 0 0px 0;
}

.bottomwrap a {
    color: var(--text-color);
}


.bottomwrap a:hover{
    color: #F2511A;
}

/* Responsive design */
@media (max-width: 1200px) {
    .title {
        font-size: 72px;
    }
    
    .subtitle {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-section {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-title {
        grid-column: 1 / 2;
    }
    
    .content-details {
        grid-column: 2 / 4;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-box:nth-child(3) {
        border-right: none;
    }
    
    .stat-box:nth-child(4), .stat-box:nth-child(5) {
        border-top: none;
    }

    .element-overview {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .signs-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
        padding-top: 130px;
    }
    
    .progress-bar {
        padding: 0 20px;
    }
    
    .progress-item {
        font-size: 12px;
        padding: 0 15px;
    }
    
    .img-section {
        margin: 20px auto;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 20px auto;
        display: block;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .img-section img,
    .clickable-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .title-section, 
    .subtitle-section, 
    .details, 
    .project-info {
        grid-column: 1 / -1;
    }
    
    .content-title, 
    .content-details {
        grid-column: 1 / -1;
    }
    
    .title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 24px;
    }
    
    .content-details .big-text {
        font-size: 24px;
    }
    
    nav a {
        padding: 14px 20px;
        width: auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-box:nth-child(2n) {
        border-right: none;
    }
    
    .stat-box:nth-child(3) {
        border-right: 1px solid rgba(0,0,0,0.1);
    }

    .element-overview {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .element-content {
        padding: 20px;
    }

    .element-tab {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .signs-grid {
        grid-template-columns: 1fr;
    }

    .zodiac-header {
        padding: 20px;
    }

    .zodiac-mapping-container {
        margin: 20px -20px;
        border-radius: 0;
    }

    .zodiac-header h4 {
        font-size: 1.3rem;
    }

    .methodology-note {
        padding: 16px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .img-section {
        padding: 0 15px;
        margin: 15px auto;
    }
    
    .hero-image {
        margin: 15px auto;
    }
    
    .title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    nav a {
        padding: 14px 10px;
    }
    
    .progress-item {
        font-size: 11px;
        padding: 0 12px;
    }

    .zodiac-header {
        padding: 16px;
    }

    .zodiac-header h4 {
        font-size: 1.2rem;
    }

    .element-content {
        padding: 16px;
    }

    .element-tab {
        padding: 10px 12px;
        font-size: 0.8rem;
        min-width: 70px;
    }

    .element-overview {
        padding: 12px;
        gap: 12px;
    }
}
/* ── Footer ── */
.main-content {
    padding: 0 40px;
}

/* ── Footer ── */
footer {
    background: #040202;
    color: #ffffff;
    padding: 60px 40px 0;
    position: relative;
    
    box-sizing: border-box;
}
.footer-content { max-width: 1440px; margin: 0 auto;}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-quote { font-size: 24px; font-weight: 300; line-height: 1.4; padding-bottom: 24px; }
.footer-byline { font-size: 16px; }
.footer-section h3 {
    font-size: 12px; font-weight: 300;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: rgba(255,255,255,1); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a {
    font-size: 16px; color: rgba(255,255,255,0.6);
    text-decoration: none; cursor: none;
    transition: color 0.3s ease, opacity 0.3s;
}
.footer-links a:hover { color: #F2511A; opacity: 1; }
.experiments-section {
    padding: 40px 0 48px;
    border-top: 1px solid rgba(255,255,255,.25);
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 28px 28px;
}
.experiments-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    letter-spacing: .12em;
    color: #fff;
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 36px;
}
.bracket-comp {
    font-size: clamp(24px, 4.5vw, 60px);
    font-weight: 200;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 0em;
    display: block;
    width: 100%;
}
.br   { color: #fff; font-weight: 200; }
.name { color: rgba(255,255,255,.85); font-weight: 200; white-space: nowrap; }
.thumb {
    display: inline-block; vertical-align: middle;
    width: 1.3em; height: 0.82em;
    margin: 0 0.08em; overflow: hidden;
    position: relative; top: -0.04em;
    transition: transform .28s cubic-bezier(.2,0,.2,1), box-shadow .28s ease;
    cursor: none;
}
.thumb:hover { transform: scale(1.1) rotate(-2deg); box-shadow: 0 8px 28px rgba(0,0,0,.7); z-index: 5; }
.thumb div { width: 100%; height: 100%; }
.c1 { background: #EDB78E; }
.c2 { background-image: url('images/gravity-thumb.png'); background-size: cover; background-position: center; }
.c3 { background: #D1B045; }
.c4 { background: #F4EDDB; }
.exp-entry { text-decoration: none; color: inherit; display: inline; transition: opacity .18s; cursor: none; }
.exp-entry:hover { opacity: .6; }
.glyph {
    display: inline-block; font-size: 0.55em;
    color: rgba(255,255,255,.3); font-weight: 300;
    vertical-align: middle; margin: 0 0.15em;
    position: relative; top: -0.04em;
}
.footer-made { font-size: 12px; color: rgba(255,255,255,0.25); text-align: left; padding: 20px 0 32px; }
