* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #050505; color: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
::selection { background: rgba(0,104,71,.3); color: #fff; } ::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #006847; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #00805a; } .font-playfair { font-family: 'Playfair Display', Georgia, serif; } #op-reading-progress {
position: fixed; top: 0; left: 0; width: 100%; height: 2px;
background: #006847; z-index: 9999;
transform-origin: left; transform: scaleX(0);
transition: transform 0.3s ease;
}
#op-reading-progress.reading { transform: scaleX(var(--progress, 0)); } .op-nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
background: rgba(5,5,5,.85); backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-bottom: 1px solid rgba(255,255,255,.05);
transition: transform .3s ease;
}
.op-nav-top {
display: flex; align-items: center; justify-content: space-between;
padding: 4px 0; font-size: 10px; text-transform: uppercase;
letter-spacing: .15em; color: #737373;
border-bottom: 1px solid rgba(255,255,255,.05);
}
.op-nav-top a:hover { color: #4ade80; }
.op-nav-main {
display: flex; align-items: center; justify-content: space-between;
height: 56px;
}
.op-nav-logo { display: flex; align-items: center; gap: 10px; }
.op-nav-logo .logo-icon {
width: 32px; height: 32px; border-radius: 8px; background: #006847;
display: flex; align-items: center; justify-content: center;
transition: transform .3s ease;
}
.op-nav-logo:hover .logo-icon { transform: scale(1.1); }
.op-nav-logo .logo-text { font-size: 16px; font-weight: 700; line-height: 1; }
.op-nav-logo .logo-sub { font-size: 8px; text-transform: uppercase; letter-spacing: .2em; color: #737373; }
.op-nav-menu { display: flex; align-items: center; gap: 2px; }
.op-nav-menu a {
padding: 6px 12px; font-size: 12px; font-weight: 500; color: #a3a3a3;
border-radius: 6px; transition: all .2s ease;
}
.op-nav-menu a:hover, .op-nav-menu a.current { color: #fff; background: rgba(255,255,255,.05); }
.op-nav-actions { display: flex; align-items: center; gap: 6px; }
.op-nav-btn {
padding: 8px; color: #a3a3a3; border-radius: 6px;
transition: all .2s ease; background: none; border: none; cursor: pointer;
}
.op-nav-btn:hover { color: #fff; background: rgba(255,255,255,.05); }
.op-nav-cta {
display: inline-flex; align-items: center; gap: 6px;
padding: 6px 16px; background: #006847; color: #fff;
font-size: 12px; font-weight: 600; border-radius: 6px;
transition: all .3s ease; border: none; cursor: pointer;
}
.op-nav-cta:hover { background: #005036; transform: scale(1.05); box-shadow: 0 10px 25px -5px rgba(0,104,71,.25); }
.op-mobile-btn { display: none; } .op-ticker {
position: fixed; top: 93px; left: 0; right: 0; z-index: 999;
background: rgba(10,10,10,.92); backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(255,255,255,.05);
overflow: hidden; height: 32px;
transition: transform .3s ease;
}
.op-ticker-inner { display: flex; align-items: center; height: 100%; }
.op-ticker-badge {
flex-shrink: 0; display: flex; align-items: center; gap: 6px;
padding: 0 16px; height: 100%; background: #dc2626;
font-size: 10px; font-weight: 700; text-transform: uppercase;
letter-spacing: .1em; color: #fff;
}
.op-ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: op-pulse 1.5s ease-in-out infinite; }
.op-ticker-track { overflow: hidden; flex: 1; }
.op-ticker-scroll { display: flex; white-space: nowrap; animation: op-marquee 40s linear infinite; }
.op-ticker-scroll span { padding: 0 32px; font-size: 12px; color: #d4d4d4; } .op-search-overlay {
position: fixed; inset: 0; z-index: 2000;
background: rgba(0,0,0,.85); backdrop-filter: blur(24px);
display: flex; align-items: flex-start; justify-content: center;
padding-top: 120px; opacity: 0; pointer-events: none;
transition: opacity .4s ease;
}
.op-search-overlay.active { opacity: 1; pointer-events: all; }
.op-search-box { width: 100%; max-width: 680px; margin: 0 16px; }
.op-search-input {
width: 100%; padding: 18px 56px; background: #171717;
border: 1px solid #404040; border-radius: 16px;
font-size: 18px; color: #fff; outline: none;
transition: border-color .3s ease;
}
.op-search-input::placeholder { color: #525252; }
.op-search-input:focus { border-color: #006847; box-shadow: 0 0 0 3px rgba(0,104,71,.15); }
.op-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #525252; }
.op-search-close {
position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
padding: 8px; color: #525252; border: none; background: none; cursor: pointer;
border-radius: 8px; transition: all .2s ease;
}
.op-search-close:hover { color: #fff; background: rgba(255,255,255,.1); }
.op-search-trends { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.op-search-trends span { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: #525252; margin-right: 4px; }
.op-search-trends button {
padding: 4px 12px; font-size: 12px; color: #a3a3a3;
background: rgba(255,255,255,.05); border: none; border-radius: 9999px;
cursor: pointer; transition: all .2s ease;
}
.op-search-trends button:hover { background: #006847; color: #fff; } .op-mobile-overlay {
position: fixed; inset: 0; z-index: 1499; background: rgba(0,0,0,.6);
opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.op-mobile-overlay.active { opacity: 1; pointer-events: all; }
.op-mobile-menu {
position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 85vw;
z-index: 1500; background: #0a0a0a; border-left: 1px solid rgba(255,255,255,.05);
overflow-y: auto; transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.op-mobile-menu.active { transform: translateX(0); }
.op-mobile-menu-inner { padding: 24px; }
.op-mobile-menu a {
display: flex; align-items: center; gap: 12px;
padding: 12px 16px; font-size: 14px; color: #a3a3a3;
border-radius: 12px; transition: all .2s ease;
}
.op-mobile-menu a:hover, .op-mobile-menu a.current { color: #fff; background: rgba(255,255,255,.05); }
.op-mobile-menu a.current { background: rgba(255,255,255,.05); }
.op-mobile-menu a .iconify { width: 16px; height: 16px; color: #4ade80; } .op-hero { position: relative; padding-top: 140px; }
.op-hero-bg {
position: absolute; inset: 0;
background: linear-gradient(135deg, rgba(0,104,71,.15) 0%, transparent 50%, rgba(0,104,71,.08) 100%);
background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
background-size: 24px 24px;
opacity: .5;
}
.op-hero-grid { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; }
@media(min-width:1024px) { .op-hero-grid { grid-template-columns: 7fr 5fr; } }
.op-hero-main { height: 420px; }
@media(min-width:768px) { .op-hero-main { height: 500px; } }
.op-hero-side { display: flex; flex-direction: column; gap: 24px; }
.op-hero-side article { flex: 1; min-height: 200px; } .op-hero-card {
position: relative; overflow: hidden; border-radius: 16px;
border: 1px solid rgba(255,255,255,.05); cursor: pointer;
transition: all .5s cubic-bezier(.4,0,.2,1);
}
.op-hero-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px -12px rgba(0,104,71,.15); border-color: rgba(0,104,71,.4); }
.op-hero-card img {
position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.op-hero-card:hover img { transform: scale(1.08); }
.op-hero-card-overlay {
position: absolute; inset: 0;
background: linear-gradient(to top, #000 0%, rgba(0,0,0,.6) 50%, transparent 100%);
}
.op-hero-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 32px; }
@media(min-width:768px) { .op-hero-card-content { padding: 32px; } }
.op-hero-card h1, .op-hero-card h2 {
font-family: 'Playfair Display', Georgia, serif; line-height: 1.2;
transition: color .3s ease;
}
.op-hero-card:hover h1, .op-hero-card:hover h2 { color: #86efac; }
.op-hero-card .op-hero-main h1 { font-size: 24px; }
@media(min-width:768px) { .op-hero-card .op-hero-main h1 { font-size: 36px; font-weight: 700; } }
.op-hero-card h2 { font-size: 18px; font-weight: 700; }
@media(min-width:768px) { .op-hero-card h2 { font-size: 20px; } } .op-badge { display: inline-flex; align-items: center; padding: 3px 10px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; border-radius: 9999px; }
.op-badge-breaking { background: linear-gradient(135deg, #dc2626, #ef4444); }
.op-badge-opini { background: linear-gradient(135deg, #006847, #00805a); }
.op-badge-cat {
padding: 2px 10px; font-size: 10px; font-weight: 600; text-transform: uppercase;
letter-spacing: .1em; color: #fff; border-radius: 6px;
background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
}
.op-badge-editor {
display: inline-flex; align-items: center; gap: 6px;
padding: 4px 12px; background: #006847; border-radius: 9999px;
font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff;
} .op-cat-tabs {
border-top: 1px solid rgba(255,255,255,.05);
border-bottom: 1px solid rgba(255,255,255,.05);
background: rgba(10,10,10,.5);
position: sticky; top: 93px; z-index: 50;
}
@media(min-width:768px) { .op-cat-tabs { top: 105px; } }
.op-cat-tabs-inner { display: flex; align-items: center; gap: 8px; padding: 12px 0; overflow-x: auto; }
.op-cat-tabs-inner::-webkit-scrollbar { display: none; }
.op-cat-chip {
flex-shrink: 0; padding: 6px 16px; font-size: 12px; font-weight: 500;
color: #a3a3a3; border: 1px solid rgba(255,255,255,.1); border-radius: 9999px;
background: none; cursor: pointer; transition: all .3s ease; white-space: nowrap;
}
.op-cat-chip:hover, .op-cat-chip.active { background: #006847; color: #fff; border-color: #006847; } .op-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.op-section-bar { width: 4px; height: 24px; background: #006847; border-radius: 4px; }
.op-section-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #4ade80; font-weight: 600; }
.op-section-title { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700; }
@media(min-width:768px) { .op-section-title { font-size: 30px; } }
.op-section-link {
display: none; align-items: center; gap: 6px; font-size: 12px;
color: #a3a3a3; transition: color .2s ease;
}
@media(min-width:768px) { .op-section-link { display: flex; } }
.op-section-link:hover { color: #4ade80; }
.op-section-link .iconify { transition: transform .2s ease; }
.op-section-link:hover .iconify { transform: translateX(4px); } .op-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:768px) { .op-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .op-grid { grid-template-columns: repeat(3, 1fr); } }
.op-card {
background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05);
border-radius: 16px; overflow: hidden; cursor: pointer;
transition: all .5s cubic-bezier(.4,0,.2,1);
}
.op-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px -12px rgba(0,104,71,.15); border-color: rgba(0,104,71,.4); }
.op-card-img { position: relative; height: 192px; overflow: hidden; }
.op-card-img img {
width: 100%; height: 100%; object-fit: cover;
transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.op-card:hover .op-card-img img { transform: scale(1.08); }
.op-card-actions {
position: absolute; top: 12px; right: 12px; display: flex; gap: 6px;
opacity: 0; transition: opacity .3s ease;
}
.op-card:hover .op-card-actions { opacity: 1; }
.op-card-action-btn {
padding: 6px; background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
border: none; border-radius: 8px; color: rgba(255,255,255,.7);
cursor: pointer; transition: all .2s ease;
}
.op-card-action-btn:hover { transform: scale(1.15); color: #4ade80; }
.op-card-action-btn.bookmarked { color: #4ade80; }
.op-card-body { padding: 20px; }
.op-card-body h3 {
font-family: 'Playfair Display', Georgia, serif; font-size: 18px;
font-weight: 600; line-height: 1.4; margin-bottom: 8px;
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
transition: color .3s ease;
}
.op-card:hover .op-card-body h3 { color: #86efac; }
.op-card-excerpt {
font-size: 14px; color: #737373; line-height: 1.6; margin-bottom: 16px;
display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.op-card-footer {
display: flex; align-items: center; justify-content: space-between;
padding-top: 16px; border-top: 1px solid rgba(255,255,255,.05);
}
.op-card-author { display: flex; align-items: center; gap: 10px; }
.op-card-author img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.op-card-author-name { font-size: 11px; font-weight: 500; }
.op-card-author-date { font-size: 10px; color: #525252; }
.op-card-meta { display: flex; align-items: center; gap: 12px; font-size: 11px; color: #525252; }
.op-card-meta span { display: flex; align-items: center; gap: 4px; }
.op-card-meta .iconify { width: 12px; height: 12px; } .op-editor-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width:1024px) { .op-editor-layout { grid-template-columns: 8fr 4fr; } }
.op-editor-featured { display: grid; grid-template-columns: 1fr; }
@media(min-width:768px) { .op-editor-featured { grid-template-columns: 1fr 1fr; } }
.op-editor-featured-img { position: relative; height: 280px; overflow: hidden; }
@media(min-width:768px) { .op-editor-featured-img { height: 100%; min-height: 360px; } }
.op-editor-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.op-editor-featured:hover .op-editor-featured-img img { transform: scale(1.05); }
.op-editor-featured-body {
padding: 28px 32px; display: flex; flex-direction: column; justify-content: center;
background: rgba(255,255,255,.02);
}
.op-editor-featured-body h2 {
font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700;
line-height: 1.3; margin-bottom: 12px; transition: color .3s ease;
}
@media(min-width:768px) { .op-editor-featured-body h2 { font-size: 24px; } }
.op-editor-featured:hover h2 { color: #86efac; }
.op-editor-featured-body p { font-size: 14px; color: #737373; line-height: 1.7; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.op-writer-ring {
background: conic-gradient(from 0deg, #006847, #4ade80, #006847);
padding: 2px; border-radius: 9999px; display: inline-block;
}
.op-writer-ring img { display: block; width: 36px; height: 36px; border-radius: 50%; object-fit: cover; } .op-list-pick {
display: flex; gap: 16px; padding: 16px; border-radius: 12px;
border: 1px solid rgba(255,255,255,.05); transition: all .3s ease; cursor: pointer;
}
.op-list-pick:hover { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.02); }
.op-list-pick-img { flex-shrink: 0; width: 96px; height: 96px; border-radius: 12px; overflow: hidden; }
.op-list-pick-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.op-list-pick:hover .op-list-pick-img img { transform: scale(1.1); }
.op-list-pick h4 { font-size: 14px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .3s ease; }
.op-list-pick:hover h4 { color: #86efac; } .op-sidebar-card { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05); border-radius: 16px; padding: 24px; margin-bottom: 32px; }
.op-sidebar-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.op-trending-num {
font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700;
color: rgba(0,104,71,.3); transition: color .2s ease; min-width: 36px;
}
.op-trending-item:hover .op-trending-num { color: #006847; }
.op-trending-item h4 { font-size: 14px; font-weight: 500; line-height: 1.4; transition: color .3s ease; }
.op-trending-item:hover h4 { color: #86efac; }
.op-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.op-tag {
padding: 6px 12px; font-size: 11px; color: #a3a3a3;
background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.05);
border-radius: 9999px; cursor: pointer; transition: all .2s ease;
}
.op-tag:hover { background: #006847; color: #fff; border-color: #006847; }
.op-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.op-stat-item { text-align: center; padding: 12px; background: rgba(255,255,255,.02); border-radius: 12px; }
.op-stat-num { font-size: 20px; font-weight: 700; background: linear-gradient(135deg, #006847, #4ade80, #006847); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: transparent; }
.op-stat-label { font-size: 10px; color: #525252; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; } .op-debate-bg {
position: absolute; inset: 0;
background: linear-gradient(135deg, rgba(0,104,71,.15) 0%, transparent 50%, rgba(0,104,71,.08) 100%);
opacity: .4;
}
.op-debate-topic {
display: inline-block; padding: 8px 24px; background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.1); border-radius: 9999px;
font-size: 14px; font-weight: 500;
}
.op-debate-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:768px) { .op-debate-grid { grid-template-columns: 1fr 1fr; } }
.op-debate-card { background: rgba(255,255,255,.02); border-radius: 16px; padding: 28px 32px; transition: border-color .3s ease; }
.op-debate-card.pro { border: 1px solid rgba(34,197,94,.2); }
.op-debate-card.pro:hover { border-color: rgba(34,197,94,.4); }
.op-debate-card.con { border: 1px solid rgba(239,68,68,.2); }
.op-debate-card.con:hover { border-color: rgba(239,68,68,.4); }
.op-debate-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.op-debate-card p { font-size: 14px; color: #737373; line-height: 1.7; margin-bottom: 20px; }
.op-debate-card-btn {
width: 100%; padding: 10px; font-size: 12px; font-weight: 600;
border-radius: 12px; cursor: pointer; transition: all .2s ease;
background: none; border: 1px solid;
}
.op-debate-card.pro .op-debate-card-btn { color: #4ade80; border-color: rgba(34,197,94,.2); background: rgba(34,197,94,.1); }
.op-debate-card.pro .op-debate-card-btn:hover { background: rgba(34,197,94,.2); }
.op-debate-card.con .op-debate-card-btn { color: #f87171; border-color: rgba(239,68,68,.2); background: rgba(239,68,68,.1); }
.op-debate-card.con .op-debate-card-btn:hover { background: rgba(239,68,68,.2); }
.op-vote-bar { height: 8px; background: rgba(255,255,255,.05); border-radius: 9999px; overflow: hidden; display: flex; }
.op-vote-bar-pro { height: 100%; background: #22c55e; border-radius: 9999px 0 0 9999px; transition: width 1s ease; }
.op-vote-bar-con { height: 100%; background: #ef4444; border-radius: 0 9999px 9999px 0; transition: width 1s ease; } .op-writer-card { text-align: center; }
.op-writer-card .op-writer-ring { width: 80px; height: 80px; margin: 0 auto 12px; transition: transform .3s ease; }
.op-writer-card .op-writer-ring img { width: 100%; height: 100%; }
.op-writer-card:hover .op-writer-ring { transform: scale(1.1); }
.op-writer-card h4 { font-size: 14px; font-weight: 600; transition: color .3s ease; }
.op-writer-card:hover h4 { color: #86efac; }
.op-writers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media(min-width:768px) { .op-writers-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1024px) { .op-writers-grid { grid-template-columns: repeat(6, 1fr); } } .op-video-card { cursor: pointer; }
.op-video-thumb { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 16px; aspect-ratio: 16/9; background: #171717; }
.op-video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.op-video-card:hover .op-video-thumb img { transform: scale(1.05); }
.op-video-thumb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.3); transition: background .3s ease; }
.op-video-card:hover .op-video-thumb-overlay { background: rgba(0,0,0,.2); }
.op-video-play {
position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.op-video-play-btn {
width: 56px; height: 56px; border-radius: 50%;
background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
display: flex; align-items: center; justify-content: center;
transition: transform .3s ease;
}
.op-video-card:hover .op-video-play-btn { transform: scale(1.1); }
.op-video-duration {
position: absolute; bottom: 12px; right: 12px;
padding: 2px 8px; background: rgba(0,0,0,.7);
font-size: 10px; font-weight: 500; border-radius: 4px; color: #fff;
}
.op-video-card h3 { font-size: 14px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .3s ease; }
.op-video-card:hover h3 { color: #86efac; }
.op-videos-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:768px) { .op-videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .op-videos-grid { grid-template-columns: repeat(3, 1fr); } } .op-newsletter-glow {
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 600px; height: 600px; background: rgba(0,104,71,.05);
border-radius: 50%; filter: blur(120px);
}
.op-newsletter-icon {
display: inline-flex; align-items: center; justify-content: center;
width: 64px; height: 64px; border-radius: 16px;
background: rgba(0,104,71,.1); border: 1px solid rgba(0,104,71,.2);
margin-bottom: 24px; animation: op-float 6s ease-in-out infinite;
}
.op-gradient-text {
background: linear-gradient(135deg, #006847, #4ade80, #006847);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text; background-size: 200% auto;
animation: op-shimmer 4s linear infinite;
}
.op-newsletter-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
@media(min-width:640px) { .op-newsletter-form { flex-direction: row; } }
.op-newsletter-input {
flex: 1; padding: 14px 20px; background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
font-size: 14px; color: #fff; outline: none; transition: all .3s ease;
}
.op-newsletter-input::placeholder { color: #525252; }
.op-newsletter-input:focus { border-color: #006847; box-shadow: 0 0 0 3px rgba(0,104,71,.15); }
.op-newsletter-btn {
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
padding: 14px 24px; background: #006847; color: #fff;
font-size: 14px; font-weight: 600; border-radius: 12px; border: none;
cursor: pointer; transition: all .3s ease; flex-shrink: 0;
}
.op-newsletter-btn:hover { background: #005036; transform: scale(1.05); box-shadow: 0 10px 25px -5px rgba(0,104,71,.25); } .op-cta-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:768px) { .op-cta-grid { grid-template-columns: repeat(3, 1fr); } }
.op-cta-card {
background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05);
border-radius: 16px; padding: 32px; text-align: center;
transition: all .5s cubic-bezier(.4,0,.2,1);
}
.op-cta-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px -12px rgba(0,104,71,.15); border-color: rgba(0,104,71,.4); }
.op-cta-icon {
display: inline-flex; align-items: center; justify-content: center;
width: 48px; height: 48px; border-radius: 12px;
background: rgba(0,104,71,.1); margin-bottom: 16px;
}
.op-cta-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.op-cta-card p { font-size: 14px; color: #737373; margin-bottom: 20px; line-height: 1.6; }
.op-cta-btn {
padding: 8px 20px; font-size: 12px; font-weight: 500;
color: #a3a3a3; border: 1px solid rgba(255,255,255,.1);
border-radius: 8px; background: none; cursor: pointer; transition: all .2s ease;
}
.op-cta-btn:hover { border-color: #006847; color: #4ade80; } .op-footer { border-top: 1px solid rgba(255,255,255,.05); background: #0a0a0a; }
.op-footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media(min-width:768px) { .op-footer-grid { grid-template-columns: repeat(4, 1fr); } }
@media(min-width:1024px) { .op-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.op-footer-brand p { font-size: 12px; color: #525252; line-height: 1.7; margin: 16px 0 20px; max-width: 280px; }
.op-footer-social { display: flex; gap: 12px; }
.op-footer-social a {
width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.05);
display: flex; align-items: center; justify-content: center;
color: #525252; transition: all .2s ease;
}
.op-footer-social a:hover { color: #4ade80; background: rgba(0,104,71,.1); }
.op-footer-col h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #a3a3a3; margin-bottom: 16px; }
.op-footer-col ul { list-style: none; }
.op-footer-col li { margin-bottom: 10px; }
.op-footer-col a { font-size: 12px; color: #525252; transition: color .2s ease; }
.op-footer-col a:hover { color: #4ade80; }
.op-footer-bottom {
border-top: 1px solid rgba(255,255,255,.05);
display: flex; flex-direction: column; align-items: center; justify-content: space-between;
gap: 12px; padding: 20px 0;
}
@media(min-width:768px) { .op-footer-bottom { flex-direction: row; } }
.op-footer-bottom p { font-size: 11px; color: #404040; }
.op-footer-status { display: flex; align-items: center; gap: 16px; font-size: 10px; color: #404040; }
.op-footer-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: op-pulse 1.5s ease-in-out infinite; } .op-back-top {
position: fixed; bottom: 24px; right: 24px; z-index: 900;
width: 40px; height: 40px; border-radius: 12px;
background: rgba(0,104,71,.8); backdrop-filter: blur(4px);
color: #fff; border: none; cursor: pointer;
display: flex; align-items: center; justify-content: center;
opacity: 0; pointer-events: none; transform: translateY(16px);
transition: all .3s ease; box-shadow: 0 10px 25px -5px rgba(0,104,71,.3);
}
.op-back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.op-back-top:hover { background: #006847; transform: translateY(-2px) !important; } .op-toast {
position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
z-index: 9000; padding: 12px 24px; background: #171717;
border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
font-size: 14px; color: #fff; display: flex; align-items: center; gap: 12px;
box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
opacity: 0; transition: all .4s cubic-bezier(.4,0,.2,1);
}
.op-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; } .op-single-hero { position: relative; height: 500px; overflow: hidden; }
@media(min-width:768px) { .op-single-hero { height: 600px; } }
.op-single-hero img { width: 100%; height: 100%; object-fit: cover; }
.op-single-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #050505 0%, rgba(5,5,5,.5) 50%, rgba(5,5,5,.3) 100%); }
.op-single-content { max-width: 720px; margin: 0 auto; }
.op-single-content p { font-size: 16px; line-height: 1.9; color: #d4d4d4; margin-bottom: 24px; }
.op-single-content h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700; margin: 40px 0 16px; color: #fff; }
.op-single-content blockquote {
border-left: 3px solid #006847; padding: 16px 24px; margin: 32px 0;
background: rgba(0,104,71,.05); border-radius: 0 12px 12px 0;
font-style: italic; color: #a3a3a3; font-size: 18px; line-height: 1.7;
}
.op-single-share { display: flex; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05); }
.op-single-share button {
display: flex; align-items: center; gap: 8px; padding: 10px 20px;
background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
border-radius: 10px; color: #a3a3a3; font-size: 12px; cursor: pointer; transition: all .2s ease;
}
.op-single-share button:hover { border-color: #006847; color: #4ade80; } .op-load-more {
display: flex; align-items: center; justify-content: center; gap: 8px;
padding: 12px 32px; border: 1px solid rgba(255,255,255,.1);
color: #a3a3a3; font-size: 14px; font-weight: 500; border-radius: 12px;
background: none; cursor: pointer; transition: all .3s ease;
}
.op-load-more:hover { border-color: #006847; color: #4ade80; background: rgba(0,104,71,.05); }
.op-load-more:disabled { opacity: .5; cursor: not-allowed; } @keyframes op-pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes op-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes op-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes op-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes op-fadeUp { from { opacity: 0; transform: translateY(30px); filter: blur(6px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.op-animate { opacity: 0; animation: op-fadeUp .8s ease-out forwards; }
.op-d1 { animation-delay: .1s; } .op-d2 { animation-delay: .2s; } .op-d3 { animation-delay: .3s; }
.op-d4 { animation-delay: .4s; } .op-d5 { animation-delay: .5s; } .op-d6 { animation-delay: .6s; }
.op-d7 { animation-delay: .7s; } .op-d8 { animation-delay: .8s; } .op-container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media(min-width:640px) { .op-container { padding: 0 24px; } }
.op-section { padding: 64px 0; }
@media(min-width:768px) { .op-section { padding: 96px 0; } }
.op-line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.op-line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; } .site-header, .main-navigation, .site-content .container, .site-footer, .footer-widgets, .site-info, .page-header, .entry-header .gp-icon, .post-image, .featured-image, .generate-columns-container, .nav-float-right .main-navigation { display: none !important; }
#content { max-width: 100% !important; padding: 0 !important; }
.separate-containers .inside-article { padding: 0 !important; }
.separate-containers .site-main { margin: 0 !important; }