.pv-countdown-container {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 60px 30px;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
position: relative;
overflow: hidden;
text-align: center;
color: white !important;
max-width: 900px;
margin: 40px auto;
}
.pv-countdown-container *:not(.pv-countdown-message):not(.pv-countdown-message *) {
color: white !important;
} .pv-countdown-container::before {
content: '⏰';
position: absolute;
top: -100px;
right: -100px;
font-size: 400px;
opacity: 0.05;
animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.05; }
50% { transform: scale(1.1); opacity: 0.08; }
} .pv-countdown-header {
margin-bottom: 40px;
}
.pv-countdown-title {
font-size: 48px;
font-weight: 700;
margin: 0 0 10px 0;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
animation: fadeInDown 1s ease;
color: white !important;
}
.pv-countdown-subtitle {
font-size: 18px;
opacity: 0.9;
margin: 0;
animation: fadeInUp 1s ease;
color: white !important;
} .pv-countdown-display {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin: 40px 0;
flex-wrap: wrap;
}
.pv-countdown-item {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 255, 255, 0.2);
padding: 25px;
border-radius: 15px;
min-width: 120px;
transition: all 0.3s ease;
animation: fadeInUp 1s ease;
}
.pv-countdown-item:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.25);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.pv-countdown-number {
font-size: 56px;
font-weight: 700;
line-height: 1;
font-family: 'Courier New', monospace;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
color: white !important;
}
.pv-countdown-label {
font-size: 14px;
text-transform: uppercase;
letter-spacing: 2px;
margin-top: 10px;
opacity: 0.9;
color: white !important;
}
.pv-countdown-separator {
font-size: 48px;
font-weight: 700;
opacity: 0.5;
animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
0%, 100% { opacity: 0.5; }
50% { opacity: 0.1; }
} .pv-countdown-message {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 255, 255, 0.3);
padding: 8px 12px;
border-radius: 10px;
margin: 8px 0 6px 0;
text-align: left;
animation: fadeInUp 1.2s ease;
}
.pv-countdown-message-icon {
font-size: 18px;
margin-bottom: 3px;
display: inline-block;
}
.pv-countdown-message-content {
font-size: 12px;
line-height: 1.15;
white-space: pre-line;
color: #333 !important;
} .pv-countdown-day-badge {
position: absolute;
top: 30px;
right: 30px;
background: linear-gradient(135deg, #E63946, #F77F00);
padding: 15px 25px;
border-radius: 50px;
box-shadow: 0 5px 20px rgba(230, 57, 70, 0.5);
animation: bounceIn 1s ease;
}
.badge-text {
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
} .pv-countdown-launch {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, #E63946 0%, #F77F00 100%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 10;
animation: slideIn 1s ease;
}
.launch-animation {
font-size: 120px;
animation: bounce 1s ease infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.pv-countdown-launch h3 {
font-size: 56px;
margin: 20px 0;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.pv-countdown-launch p {
font-size: 24px;
margin-bottom: 30px;
opacity: 0.9;
}
.pv-countdown-btn {
background: white;
color: #E63946;
padding: 18px 40px;
border-radius: 50px;
text-decoration: none;
font-size: 18px;
font-weight: 700;
transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.pv-countdown-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
color: #E63946;
} @keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes bounceIn {
0% {
opacity: 0;
transform: scale(0.3);
}
50% {
opacity: 1;
transform: scale(1.05);
}
70% {
transform: scale(0.9);
}
100% {
transform: scale(1);
}
}
@keyframes slideIn {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
} @media (max-width: 768px) {
.pv-countdown-container {
padding: 40px 15px !important;
margin: 20px 0 !important;
max-width: 100% !important;
width: 100% !important;
border-radius: 0 !important;
box-sizing: border-box !important;
}
.pv-countdown-title {
font-size: 32px;
}
.pv-countdown-subtitle {
font-size: 16px;
}
.pv-countdown-display {
gap: 10px;
}
.pv-countdown-item {
padding: 15px;
min-width: 80px;
}
.pv-countdown-number {
font-size: 36px;
}
.pv-countdown-label {
font-size: 11px;
}
.pv-countdown-separator {
font-size: 32px;
}
.pv-countdown-day-badge {
top: 15px;
right: 15px;
padding: 10px 20px;
}
.badge-text {
font-size: 18px;
}
.pv-countdown-message {
padding: 6px 10px;
font-size: 11px;
margin: 6px 0 4px 0;
}
.pv-countdown-message-icon {
font-size: 16px;
margin-bottom: 2px;
}
.pv-countdown-message-content {
font-size: 11px;
line-height: 1.15;
color: #333 !important;
}
.launch-animation {
font-size: 80px;
}
.pv-countdown-launch h3 {
font-size: 36px;
}
.pv-countdown-launch p {
font-size: 18px;
} .pv-progress-section,
.pv-countdown-message,
.pv-social-section,
.pv-newsletter-section,
.pv-gallery-section,
.pv-timeline-section,
.pv-faq-section,
.pv-follow-section {
max-width: 100% !important;
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
box-sizing: border-box !important;
}
}  .pv-progress-section {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 20px;
border-radius: 15px;
margin: 30px 0;
}
.pv-progress-label {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
font-size: 14px;
font-weight: 600;
color: white !important;
}
.pv-progress-percent {
color: #FFD166 !important;
}
.pv-progress-bar {
background: rgba(255, 255, 255, 0.2);
height: 12px;
border-radius: 10px;
overflow: hidden;
}
.pv-progress-fill {
background: linear-gradient(90deg, #E63946, #F77F00, #FFD166);
height: 100%;
border-radius: 10px;
transition: width 0.5s ease;
box-shadow: 0 0 15px rgba(255, 209, 102, 0.5);
} .pv-hint-box {
background: linear-gradient(135deg, #FFD166, #F77F00);
padding: 20px;
border-radius: 15px;
margin: 20px 0;
display: flex;
align-items: center;
gap: 15px;
box-shadow: 0 5px 20px rgba(247, 127, 0, 0.3);
animation: slideInRight 0.5s ease;
}
.pv-hint-box * {
color: #333 !important;
}
.pv-hint-icon {
font-size: 32px;
}
.pv-hint-text {
font-size: 18px;
font-weight: 600;
color: #333 !important;
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
} .pv-quote-section {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 15px;
margin: 30px 0;
border-left: 4px solid #FFD166;
text-align: center;
}
.pv-quote-icon {
font-size: 48px;
margin-bottom: 15px;
}
.pv-quote {
font-size: 20px;
font-style: italic;
line-height: 1.6;
margin: 15px 0;
color: white !important;
}
.pv-quote-author {
display: block;
font-size: 14px;
margin-top: 15px;
opacity: 0.8;
color: white !important;
} .pv-social-share {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 25px;
border-radius: 15px;
margin: 30px 0;
text-align: center;
}
.pv-social-title {
font-size: 18px;
font-weight: 700;
margin-bottom: 15px;
color: white !important;
}
.pv-social-buttons {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 10px;
}
.pv-social-btn {
padding: 12px 20px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
font-size: 14px;
}
.pv-social-facebook {
background: #1877F2;
color: white !important;
}
.pv-social-twitter {
background: #1DA1F2;
color: white !important;
}
.pv-social-email {
background: #EA4335;
color: white !important;
}
.pv-social-copy {
background: #666;
color: white !important;
}
.pv-social-btn:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
} .pv-newsletter-section {
background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(247, 127, 0, 0.9));
padding: 30px;
border-radius: 20px;
margin: 30px 0;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.pv-newsletter-section * {
color: white !important;
}
.pv-newsletter-icon {
font-size: 48px;
margin-bottom: 10px;
}
.pv-newsletter-title {
font-size: 28px;
margin: 15px 0 10px 0;
color: white !important;
}
.pv-newsletter-desc {
opacity: 0.9;
margin-bottom: 20px;
color: white !important;
}
.pv-newsletter-form {
display: flex;
gap: 10px;
max-width: 500px;
margin: 0 auto;
}
.pv-newsletter-input {
flex: 1;
padding: 15px 20px;
border: none;
border-radius: 50px;
font-size: 16px;
color: #333 !important;
background: white !important;
}
.pv-newsletter-btn {
padding: 15px 30px;
background: white !important;
color: #E63946 !important;
border: none;
border-radius: 50px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
}
.pv-newsletter-btn:hover {
transform: scale(1.05);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.pv-newsletter-privacy {
font-size: 12px;
margin-top: 10px;
opacity: 0.8;
color: white !important;
} .pv-visitors-section {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 25px;
border-radius: 15px;
margin: 30px 0;
text-align: center;
}
.pv-visitors-icon {
font-size: 48px;
margin-bottom: 15px;
}
.pv-visitors-count {
display: flex;
flex-direction: column;
gap: 5px;
}
.pv-visitors-number {
font-size: 42px;
font-weight: 700;
color: #FFD166 !important;
}
.pv-visitors-label {
font-size: 16px;
opacity: 0.9;
color: white !important;
} .pv-gallery-section {
margin: 40px 0;
}
.pv-gallery-title {
text-align: center;
font-size: 24px;
margin-bottom: 20px;
color: white !important;
}
.pv-gallery-carousel {
position: relative;
overflow: hidden;
padding: 0 50px;
}
.pv-gallery-track {
display: flex;
gap: 20px;
transition: transform 0.3s ease;
}
.pv-gallery-item {
min-width: 250px;
text-align: center;
}
.pv-gallery-placeholder {
width: 100%;
height: 200px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
}
.pv-gallery-emoji {
font-size: 64px;
}
.pv-gallery-img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 15px;
margin-bottom: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pv-gallery-img:hover {
transform: scale(1.05);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.pv-gallery-caption {
font-size: 14px;
font-weight: 600;
color: white !important;
}
.pv-gallery-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.9);
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
font-size: 24px;
cursor: pointer;
transition: all 0.3s ease;
color: #333 !important;
}
.pv-gallery-prev {
left: 0;
}
.pv-gallery-next {
right: 0;
}
.pv-gallery-nav:hover {
background: white;
transform: translateY(-50%) scale(1.1);
} .pv-timeline-section {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 15px;
margin: 30px 0;
}
.pv-timeline-title {
text-align: center;
font-size: 24px;
margin-bottom: 30px;
color: white !important;
}
.pv-timeline {
max-width: 600px;
margin: 0 auto;
}
.pv-timeline-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
position: relative;
}
.pv-timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 19px;
top: 40px;
width: 2px;
height: calc(100% + 10px);
background: rgba(255, 255, 255, 0.3);
}
.pv-timeline-marker {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
flex-shrink: 0;
}
.pv-timeline-done .pv-timeline-marker {
background: #28a745;
}
.pv-timeline-current .pv-timeline-marker {
background: #FFD166;
animation: pulse 2s infinite;
}
.pv-timeline-future .pv-timeline-marker {
background: rgba(255, 255, 255, 0.2);
}
.pv-timeline-content {
flex: 1;
}
.pv-timeline-date {
font-weight: 700;
margin-bottom: 5px;
color: white !important;
}
.pv-timeline-text {
opacity: 0.9;
color: white !important;
} .pv-faq-section {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 15px;
margin: 30px 0;
}
.pv-faq-title {
text-align: center;
font-size: 24px;
margin-bottom: 25px;
color: white !important;
}
.pv-faq-list {
max-width: 700px;
margin: 0 auto;
}
.pv-faq-item {
margin-bottom: 15px;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
overflow: hidden;
}
.pv-faq-question {
width: 100%;
padding: 18px 20px;
background: none;
border: none;
color: white !important;
text-align: left;
font-size: 16px;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}
.pv-faq-question:hover {
background: rgba(255, 255, 255, 0.1);
}
.pv-faq-icon {
font-size: 24px;
font-weight: 400;
}
.pv-faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.pv-faq-answer p {
padding: 0 20px 18px 20px;
margin: 0;
opacity: 0.9;
color: white !important;
} .pv-follow-section {
text-align: center;
padding: 30px;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
margin: 30px 0;
}
.pv-follow-title {
font-size: 18px;
margin-bottom: 15px;
font-weight: 600;
color: white !important;
}
.pv-follow-links {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}
.pv-follow-btn {
padding: 12px 25px;
background: rgba(255, 255, 255, 0.15);
border-radius: 50px;
text-decoration: none;
color: white !important;
font-weight: 600;
transition: all 0.3s ease;
}
.pv-follow-btn:hover {
background: rgba(255, 255, 255, 0.25);
transform: translateY(-3px);
color: white !important;
} @media (max-width: 768px) {
.pv-social-buttons {
grid-template-columns: 1fr 1fr;
}
.pv-newsletter-form {
flex-direction: column;
max-width: 100% !important;
width: 100% !important;
padding: 0 15px;
box-sizing: border-box !important;
}
.pv-newsletter-input,
.pv-newsletter-btn {
width: 100% !important;
box-sizing: border-box !important;
}
.pv-gallery-carousel {
padding: 0 15px;
max-width: 100% !important;
width: 100% !important;
box-sizing: border-box !important;
}
.pv-gallery-item {
min-width: 200px;
}
.pv-timeline {
max-width: 100% !important;
width: 100% !important;
padding: 0 15px;
box-sizing: border-box !important;
}
.pv-timeline-item {
font-size: 14px;
}
.pv-faq-list {
max-width: 100% !important;
width: 100% !important;
padding: 0 15px;
box-sizing: border-box !important;
}
.pv-follow-links {
flex-direction: column;
}
} @media (prefers-color-scheme: dark) {
.pv-countdown-item,
.pv-countdown-message {
background: rgba(0, 0, 0, 0.3);
border-color: rgba(255, 255, 255, 0.1);
}
} .pv-success-message,
.pv-error-message {
padding: 12px 20px;
border-radius: 8px;
margin-top: 15px;
font-weight: 600;
text-align: center;
animation: slideIn 0.3s ease-out;
}
.pv-success-message {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.pv-error-message {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.pv-newsletter-btn:disabled {
background: #999 !important;
cursor: not-allowed;
}.pv-exchange-wrapper {
font-family: system-ui, -apple-system, sans-serif;
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
} .pv-exchange-header {
background: linear-gradient(135deg, #00a8cc, #0077b6);
border-radius: 16px;
padding: 30px;
margin-bottom: 30px;
color: #fff;
box-shadow: 0 8px 20px rgba(0,168,204,0.3);
}
.pv-exchange-title {
margin: 0 0 15px;
font-size: 2rem;
font-weight: 700;
text-align: center;
}
.pv-exchange-meta {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
font-size: 14px;
}
.pv-exchange-base,
.pv-exchange-update {
opacity: 0.95;
}
.pv-exchange-base strong,
.pv-exchange-update strong {
font-weight: 700;
}
.pv-refresh-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 16px;
background: rgba(255,255,255,0.2);
border: 2px solid rgba(255,255,255,0.3);
border-radius: 8px;
color: #fff;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}
.pv-refresh-btn:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-2px);
}
.pv-refresh-btn .dashicons {
font-size: 18px;
width: 18px;
height: 18px;
}
.pv-refresh-btn.loading .dashicons {
animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
} .pv-exchange-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
} .pv-exchange-card {
background: #fff;
border-radius: 16px;
padding: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 2px solid transparent;
}
.pv-exchange-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
} .pv-exchange-card.pv-trend-up {
border-color: #27ae60;
background: linear-gradient(135deg, #fff 0%, #e8f8f5 100%);
}
.pv-exchange-card.pv-trend-down {
border-color: #e74c3c;
background: linear-gradient(135deg, #fff 0%, #fadbd8 100%);
}
.pv-exchange-card.pv-trend-stable {
border-color: #95a5a6;
} .pv-card-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 15px;
}
.pv-flag {
font-size: 32px;
line-height: 1;
}
.pv-currency-info {
display: flex;
flex-direction: column;
}
.pv-currency-code {
font-size: 1.2rem;
font-weight: 700;
color: #2c3e50;
}
.pv-currency-name {
font-size: 13px;
color: #7f8c8d;
} .pv-card-body {
margin: 20px 0;
}
.pv-rate {
display: flex;
align-items: baseline;
gap: 8px;
}
.pv-rate-value {
font-size: 2rem;
font-weight: 700;
color: #0077b6;
}
.pv-rate-symbol {
font-size: 1.2rem;
color: #7f8c8d;
font-weight: 600;
} .pv-card-footer {
padding-top: 15px;
border-top: 2px solid #ecf0f1;
}
.pv-trend-indicator {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 600;
}
.pv-trend-up .pv-trend-indicator {
color: #27ae60;
}
.pv-trend-down .pv-trend-indicator {
color: #e74c3c;
}
.pv-trend-stable .pv-trend-indicator {
color: #95a5a6;
}
.pv-trend-icon {
font-size: 18px;
} @media (max-width: 900px) {
.pv-exchange-grid {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.pv-exchange-title {
font-size: 1.6rem;
}
}
@media (max-width: 600px) {
.pv-exchange-grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.pv-exchange-header {
padding: 20px;
}
.pv-exchange-title {
font-size: 1.4rem;
}
.pv-exchange-meta {
flex-direction: column;
gap: 10px;
font-size: 13px;
}
.pv-exchange-card {
padding: 15px;
}
.pv-rate-value {
font-size: 1.5rem;
}
}
@media (max-width: 400px) {
.pv-exchange-grid {
grid-template-columns: 1fr;
}
} .pv-exchange-card.loading {
opacity: 0.6;
pointer-events: none;
}
.pv-exchange-card.loading .pv-rate-value {
animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}