.phoenix-blog-page {
padding: 120px 60px 80px;
background: linear-gradient(135deg, rgba(255,248,240,0.92) 0%, rgba(230,240,255,0.92) 50%, rgba(255,240,245,0.92) 100%);
background-image: url('../assets/phoenix-blog-bg.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
position: relative;
overflow: hidden;
}
.phoenix-blog-page::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.78);
z-index: 0;
pointer-events: none;
}
.phoenix-blog-header {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 25px;
margin-bottom: 20px;
padding: 30px 40px;
background: rgba(255, 255, 255, 0.85);
border-bottom: 2px solid rgba(255, 20, 147, 0.3);
backdrop-filter: blur(10px);
width: 100%;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.phoenix-blog-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
border: 2px solid #00BFFF;
overflow: hidden;
flex-shrink: 0;
box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}
.phoenix-blog-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.phoenix-blog-title {
flex: 1;
text-align: center;
}
.phoenix-blog-title h1 {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
color: #FF1493;
text-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
font-style: italic;
font-weight: 700;
margin: 0;
letter-spacing: 1px;
}
.phoenix-blog-subtitle {
position: relative;
z-index: 1;
text-align: center;
font-family: 'Playfair Display', serif;
font-style: italic;
font-size: 1.1rem;
color: #555;
margin-bottom: 50px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.phoenix-blog-posts {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 35px;
max-width: 1400px;
margin: 0 auto 60px;
}
.blog-post-card {
background: rgba(255, 255, 255, 0.95);
border: none;
border-radius: 0;
padding: 0;
cursor: pointer;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.blog-post-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #00BFFF, #FF1493, #9400D3);
opacity: 0;
transition: opacity 0.4s ease;
z-index: 2;
}
.blog-post-card::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 0;
background: linear-gradient(180deg, transparent, rgba(255, 20, 147, 0.08));
transition: height 0.4s ease;
z-index: 0;
}
.blog-post-card:hover::before { opacity: 1; }
.blog-post-card:hover::after { height: 100%; }
.blog-post-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
}
.blog-post-thumbnail {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
position: relative;
z-index: 1;
filter: brightness(0.95);
transition: all 0.4s ease;
}
.blog-post-card:hover .blog-post-thumbnail {
filter: brightness(1.05);
transform: scale(1.02);
}
.blog-post-content {
padding: 25px 20px 30px;
position: relative;
z-index: 1;
}
.blog-post-category {
font-family: 'Inter', sans-serif;
font-size: 0.7rem;
letter-spacing: 3px;
text-transform: uppercase;
color: #FF1493;
margin-bottom: 12px;
font-weight: 600;
}
.blog-post-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.25rem;
color: #1a1a2e;
margin-bottom: 12px;
position: relative;
z-index: 1;
line-height: 1.3;
font-weight: 700;
}
.blog-post-card p {
color: #666;
line-height: 1.6;
position: relative;
z-index: 1;
font-size: 0.88rem;
margin-bottom: 15px;
}
.blog-post-meta {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.75rem;
color: #999;
font-family: 'Inter', sans-serif;
border-top: 1px solid rgba(0, 0, 0, 0.08);
padding-top: 12px;
margin-top: 10px;
}
.blog-post-card .read-more {
display: inline-block;
margin-top: 0;
color: #00BFFF;
font-size: 0.75rem;
font-weight: 600;
position: relative;
z-index: 1;
letter-spacing: 1px;
text-transform: uppercase;
}
.blog-post-card:hover .read-more { color: #FF1493; }
.corner-badge {
position: absolute;
top: -8px;
left: -8px;
width: 80px;
height: 80px;
z-index: 10;
pointer-events: auto;
cursor: pointer;
overflow: visible;
}
.corner-badge .ribbon {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
clip-path: polygon(0 0, 100% 0, 100% 18px, 18px 100%, 0 100%);
box-shadow: 0 0 20px rgba(255, 20, 147, 0.6), 0 0 40px rgba(255, 105, 180, 0.4);
animation: ribbonPulse 2s ease-in-out infinite;
}
.corner-badge .stars {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 1.8rem;
z-index: 2;
animation: starTwinkle 1.5s ease-in-out infinite;
filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
pointer-events: none;
}
.corner-badge .badge-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-45deg);
font-size: 0.6rem;
font-weight: 700;
color: white;
text-transform: uppercase;
letter-spacing: 0.5px;
opacity: 0;
transition: opacity 0.3s ease;
z-index: 3;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
pointer-events: none;
white-space: nowrap;
}
.corner-badge:hover .ribbon {
animation: ribbonGlow 1s ease-in-out infinite;
box-shadow: 0 0 30px rgba(255, 20, 147, 0.9), 0 0 60px rgba(255, 105, 180, 0.7);
}
.corner-badge:hover .stars {
animation: starSpin 2s linear infinite;
filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
}
.corner-badge:hover .badge-text { opacity: 1; }
@keyframes ribbonPulse {
0%, 100% { filter: brightness(1); }
50% { filter: brightness(1.2); }
}
@keyframes ribbonGlow {
0%, 100% {
filter: brightness(1);
box-shadow: 0 0 30px rgba(255, 20, 147, 0.9), 0 0 60px rgba(255, 105, 180, 0.7);
}
50% {
filter: brightness(1.3);
box-shadow: 0 0 50px rgba(255, 20, 147, 1), 0 0 100px rgba(255, 105, 180, 0.9);
}
}
@keyframes starTwinkle {
0%, 100% {
opacity: 1;
transform: translate(-50%, -50%) scale(1) rotate(0deg);
}
50% {
opacity: 0.7;
transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
}
}
@keyframes starSpin {
0% { transform: translate(-50%, -50%) scale(1.3) rotate(0deg); }
100% { transform: translate(-50%, -50%) scale(1.5) rotate(360deg); }
}
/* GAMES POST STYLES */
.games-post-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px;
}
.game-entry {
display: grid;
grid-template-columns: 400px 1fr;
gap: 40px;
margin-bottom: 80px;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
transition: all 0.4s ease;
}
.game-entry:hover {
transform: translateY(-5px);
box-shadow: 0 20px 60px rgba(0, 0, 191, 0.15);
}
.game-image-wrapper {
position: relative;
overflow: hidden;
height: 100%;
min-height: 300px;
}
.game-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.game-entry:hover .game-image-wrapper img {
transform: scale(1.05);
}
.game-content {
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
}
.game-rank {
font-family: 'Cinzel', serif;
font-size: 3rem;
color: var(--gold);
font-weight: 700;
line-height: 1;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.game-title {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: #1a1a2e;
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}
.game-description {
color: #555;
line-height: 1.8;
font-size: 1rem;
}
.games-intro {
text-align: center;
max-width: 900px;
margin: 0 auto 60px;
padding: 40px;
background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(255, 20, 147, 0.05) 100%);
border-radius: 20px;
border: 2px solid rgba(0, 191, 255, 0.2);
}
.games-intro p {
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
color: #555;
line-height: 1.8;
font-style: italic;
}
.games-divider {
border: none;
height: 3px;
background: linear-gradient(90deg, transparent, var(--phoenix-blue), var(--neon-pink), var(--neon-purple), transparent);
margin: 60px auto;
max-width: 600px;
border-radius: 3px;
}
@media (max-width: 968px) {
.game-entry {
grid-template-columns: 1fr;
}
.game-image-wrapper { min-height: 250px; }
.game-content { padding: 30px; }
.game-rank { font-size: 2rem; }
.game-title { font-size: 1.5rem; }
}
@media (max-width: 1200px) {
.phoenix-blog-posts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.phoenix-blog-header {
flex-direction: column;
text-align: center;
padding: 15px 25px;
}
.phoenix-blog-avatar {
width: 60px;
height: 60px;
}
.phoenix-blog-title h1 { font-size: 2.2rem; }
.phoenix-blog-posts { grid-template-columns: 1fr; }
}
/* SHARE BUTTON SYSTEM */
.share-btn-container {
position: relative;
display: inline-block;
}
.share-btn {
width: 32px;
height: 32px;
background: rgba(255, 20, 147, 0.1);
border: 1px solid rgba(255, 20, 147, 0.3);
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
padding: 0;
}
.share-btn:hover {
background: rgba(255, 20, 147, 0.2);
border-color: var(--neon-pink);
transform: scale(1.1);
}
.share-btn svg {
width: 16px;
height: 16px;
fill: var(--neon-pink);
transition: all 0.3s;
}
.share-btn:hover svg {
fill: var(--gold);
}
.share-menu {
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%) translateY(-10px);
background: rgba(255, 255, 255, 0.98);
border: 1px solid rgba(255, 20, 147, 0.3);
border-radius: 12px;
padding: 12px;
min-width: 200px;
box-shadow: 0 10px 40px rgba(255, 20, 147, 0.2);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 100;
backdrop-filter: blur(10px);
}
.share-menu.active {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}
.share-menu-item {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 15px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
color: #333;
font-size: 0.85rem;
font-weight: 500;
}
.share-menu-item:hover {
background: rgba(255, 20, 147, 0.1);
transform: translateX(5px);
}
.share-menu-item svg {
width: 20px;
height: 20px;
flex-shrink: 0;
}
.share-menu-item.telegram svg { fill: #0088cc; }
.share-menu-item.whatsapp svg { fill: #25D366; }
.share-menu-item.whatsapp-status svg { fill: #128C7E; }
.share-menu-item.instagram svg { fill: #E4405F; }
.share-menu-item.x-twitter svg { fill: #000; }
.share-menu-item.copy-link svg { fill: var(--gold-dark); }
.share-divider {
height: 1px;
background: rgba(255, 20, 147, 0.1);
margin: 8px 0;
}
/* Share button en modales abiertos */
.blog-modal-content .share-btn-container {
position: absolute;
top: 20px;
right: 80px;
}
.blog-modal-content .share-btn {
background: rgba(255, 20, 147, 0.1);
border-color: rgba(255, 20, 147, 0.3);
}
.blog-modal-content .share-menu {
bottom: auto;
top: 100%;
right: 0;
left: auto;
transform: translateY(-10px);
margin-top: 10px;
}
.blog-modal-content .share-menu.active {
transform: translateY(0);
}