* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}
*,
*::before,
*::after {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
}
:root {
  --background-color: #0a0f1c;
  --card-background: #1a2238;
  --border-color: #2a3655;
  --text-color: #e8eef7;
  --text-muted: #a0aec0;
  --primary-color: #00d4ff;
  --primary-hover: #00a3cc;
  --button-bg: #0066ff;
  --button-hover: #0052cc;
  --secondary-accent: #ff00aa;
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  --blue-gradient: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
  --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.4);
  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
  --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5);
}
a {
  text-decoration: none; 
  cursor: pointer; 
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, #0a0f1c 0%, #1a2238 50%, #0f172a 100%);
    z-index: -1;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10vh;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2238 100%);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
nav {
    width: 100%;
    background: rgba(26, 34, 56, 0.95);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}
.hamburger {
    font-size: 1.5rem;
    color: #FFD700;
    cursor: pointer;
    background: rgba(0, 212, 255, 0.1);
    border: none;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
}
.hamburger:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.7);
}
.logo {
    font-size: 1rem;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    flex: 1;
}
.logo img {
    width: auto;
    height: 45px;
}
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(160deg, #1a2238 0%, #2a3655 50%, #1e293b 100%);
    border-radius: 0 25px 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border-right: 2px solid rgba(0, 212, 255, 0.3);
}
.side-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2300d4ff"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}
.side-menu.active {
    left: 0;
    transform: translateX(0);
}
.menu-header {
    padding: 1.5rem 1.75rem;
    color: #e8eef7;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}
.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(139, 92, 246, 0.2);
    border: none;
    color: #8b5cf6;
    font-size: 1.1rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: var(--glow-purple);
}
.close-menu:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.7);
}
.user-profile {
    display: flex;
    color: #e8eef7;
    align-items: center;
    gap: 1rem;
}
.user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00d4ff;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
    background: #2a3655;
    position: relative;
}
.user-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
    pointer-events: none;
}
.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-name {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.user-status {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    font-weight: 600;
}
.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
}
.menu-content {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.menu-section {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #00d4ff;
    opacity: 0.9;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: rgba(0, 212, 255, 0.08);
    margin: 0.5rem 0;
}
.menu-item {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    color: #e8eef7;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 16px 16px 0;
    margin: 0.25rem 0.8rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--blue-gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}
.menu-item i {
    font-size: 1.2rem;
    margin-right: 12px;
    color: #8b5cf6;
    transition: all 0.3s ease;
    width: 24px;
    text-align: center;
}
.menu-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}
.menu-item:hover::before {
    transform: scaleY(1);
}
.menu-item:hover i {
    transform: scale(1.1);
    color: #00d4ff;
}
.menu-item.active {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    font-weight: 700;
    box-shadow: inset 4px 0 0 #00d4ff;
}
.menu-item.active::before {
    transform: scaleY(1);
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 100;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
.subscription-container {
    width: 100%;
    max-width: 42rem;
    overflow: hidden;
    padding: 1rem;
}
.profile-card {
    width: 100%;
    padding: 2rem 2rem 1rem 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #ff9500 50%, #ff6b00 75%, #ffd700 100%);
    border-bottom: 8px solid #1a1f3a;
    position: relative;
    border-radius: 20px;
    margin: 2rem 0 2rem 0;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4), var(--shadow-xl);
    overflow: visible;
    border: 2px solid rgba(255, 215, 0, 0.5);
}
.profile-card2 {
    width: 100%;

    border-bottom: 8px solid #1a1f3a;
    border-radius: 20px;
    margin: 0 0 2rem 0;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4), var(--shadow-xl);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.5);
}
.profile-card::before, .profile-card2::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(255, 255, 255, 0.1) 10deg,
            transparent 20deg
        );
    pointer-events: none;
}
.profile-header2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.profile-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}
.profile-name {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.6);
    position: relative;
}
.profile-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #00ff88 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
.profile-stats {
    display: flex;
    gap: 10px;
    color: #f2f2f2;
    vertical-align: middle;
    font-size: 15px;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.profile-stats i {
    font-size: 11px;
    margin: 2px 4px 0 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.profile-stats span {
    color: #00d4ff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}
.card-footer {
    padding: 16px 0 12px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-text {
    color: #00d4ff;
    font-size: 15px;
    font-weight: 700;
}
.social-profiles {
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile-avatars {
    display: flex;
    align-items: center;
}
.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    margin-left: -6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    background: #2a3655;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.profile-avatar:hover {
    transform: translateY(-2px) scale(1.1);
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}
.profile-avatar:first-child {
    margin-left: 0;
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.joined-count {
    color: #FFD700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-weight: 800;
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.action-buttons {
    display: flex;
    gap: 0.75rem;
    z-index: 1;
}
.btn {
    border: 0;
    background: rgba(0, 212, 255, 0.1);
    color: #e8eef7;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.btn:hover::before {
    left: 100%;
}
.btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}
.btn .count {
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(0, 212, 255, 0.2);
    padding: 2px 6px;
    border-radius: 8px;
    min-width: 20px;
    text-align: center;
    color: #00d4ff;
}
.like-btn {
    color: #10b981;
}
.dis-btn {
    color: #ef4444;
}
.like-btn.active {
    transform: scale(1.1) rotate(-2deg);
    color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}
.dis-btn.active {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}
.rank-badge {
    width: 10.625rem;
    height: 10.625rem;
    position: absolute;
    top: -2rem;
    right: 0rem;
    z-index: 10;
}
.dice-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.25rem;
  height: 6.25rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.8) 0%,
    rgba(0, 212, 255, 0.4) 40%,
    rgba(0, 212, 255, 0.1) 70%,
    rgba(0, 212, 255, 0) 100%
  );
  filter: blur(12px);
  animation: pulse-glow 1.8s ease-in-out infinite alternate;
  z-index: 0;
}
.dice-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.25rem;
  height: 6.25rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.8) 0%,
    rgba(255, 140, 0, 0.4) 50%,
    transparent 80%
  );
  filter: blur(5px);
  border-radius: 50%;
  z-index: -1;
}
.dice-container {
    width: 22vw;
    height: 12vh;
    max-width: 100px;
    position: absolute;
    top: 36%;
    left: 53%;
    transform: translate(-50%, -50%);
    z-index: 13;
}
.dice {
    width: 100%;
    height: 100%;
    animation: float 9.5s ease-in-out infinite;
    object-fit: contain;
    cursor: pointer;
    position: relative;
    margin:2.2rem 0 0 2.7rem;
}
.stand {
    width: 100%;
    height: 100%;
    max-width: 140px;
    width: 25vw;
    max-height: 5vh;
    position: absolute;
    bottom: 2.5rem;
    left: 55%;
    transform: translateX(-50%);
    z-index: 12;
}
.star {
    position: absolute;
    background: radial-gradient(circle, #fff 20%, #fff 70%, transparent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkle 0.6s ease-out forwards;
    pointer-events: none;
    z-index: 20;
}
.star.small {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 10px #fff, 0 0 20px #00d4ff;
}
.star.medium {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 15px #fff, 0 0 30px #00d4ff;
}
.star.large {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 20px #fff, 0 0 40px #00d4ff, 0 0 60px #00d4ff;
}
.section-container {
    padding: 0 16px 16px 16px;
    margin-bottom: 15px;
    background: rgba(26, 34, 56, 0.8);
    border-radius: 16px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-lg);
}
.faq-section {
    padding: 0;
}
.section-header {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
.section-label {
    font-size: 1.25rem;
    background: var(--purple-gradient);
    padding: 12px 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: left;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(139, 92, 246, 0.5);
}
.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.compact-grid {
    display: flex;
    gap: 10px;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 4px;
    scrollbar-width: none;
}
.compact-grid::-webkit-scrollbar {
    display: none;
}
.compact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 70px;
    padding: 6px;
    background: rgba(42, 54, 85, 0.9);
    border-radius: 12px;
    text-decoration: none;
    color: #e8eef7;
    font-size: 8px;
    text-align: center;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.compact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.compact-card:hover::before {
    left: 100%;
}
.compact-card:hover {
    background: rgba(42, 54, 85, 1);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}
.compact-card i {
    font-size: 20px;
    margin-bottom: 6px;
    color: #00d4ff;
    transition: all 0.3s ease;
}
.compact-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #FFD700;
}
.card-giveaway {
    padding: 8px;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    height: 70px;
    width: 120px;
}
.card-text {
    font-size: 11px;
    line-height: 1.3;
    display: block;
    color: #e8eef7;
    font-weight: 600;
}
.card-time {
    font-weight: 600;
    font-size: 11px;
    line-height: 1.3;
    display: block;
    color: #FFD700;
}
.card-text i {
    font-size: 10px;
    color: #00d4ff;
}
.empty-text {
    font-size: 12px;
    color: #00d4ff;
    opacity: 0.8;
    padding: 0 12px;
    font-weight: 600;
}
.faq-section {
    padding: 0;
}
.faq-item {
    background: rgba(42, 54, 85, 0.7);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-top: none;
}
.faq-item:hover {
    background: rgba(42, 54, 85, 0.9);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px;
    cursor: pointer;
    user-select: none;
    color: #e8eef7;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    background: rgba(0, 212, 255, 0.05);
}
.faq-question:hover {
    background: rgba(0, 212, 255, 0.1);
}
.faq-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #00d4ff;
    font-size: 13px;
}
.faq-item.expanded .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 16px;
    color: #a0aec0;
    font-size: 11px;
    line-height: 1.7;
}
.faq-item.expanded .faq-answer {
    max-height: 400px;
    padding: 0 20px 18px 20px;
}
.subscribe-button {
    border: none;
    outline: none;
    background: var(--blue-gradient);
    border-radius: 20px;
    width: 98%;
    margin: 20px auto;
    padding: 1.1rem;
    color: #0a0f1c;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    box-shadow: 0 8px 0 #0066cc, 0 12px 20px rgba(0, 212, 255, 0.4);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.subscribe-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.subscribe-button:hover::before {
    left: 100%;
}
.subscribe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 0 #0066cc, 0 16px 30px rgba(0, 212, 255, 0.6);
}
.subscribe-button:active,
.subscribe-button.pressed {
    transform: translateY(8px);
    box-shadow: 0 0 0 #0052a3, 0 4px 10px rgba(0, 212, 255, 0.3);
}
.cancel-text {
    text-align: center;
    font-size: 13px;
    color: #00d4ff;
    margin-bottom: 10px;
    font-weight: 600;
    opacity: 0.9;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    color: #00d4ff;
    padding-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}
.footer-links a:hover {
    text-decoration: underline;
    color: #e8eef7;
    background: rgba(0, 212, 255, 0.1);
}
.divider {
    width: 50px;
    height: 3px;
    background: var(--purple-gradient);
    margin: 12px auto;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.5);
}
.menu-footer {
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
}
.login-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--blue-gradient);
    color: #0a0f1c;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 0 #0066cc, 0 8px 16px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.login-btn:hover::before {
    left: 100%;
}
.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #0066cc, 0 12px 24px rgba(0, 212, 255, 0.4);
}
.login-btn:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #0052a3, 0 4px 12px rgba(0, 212, 255, 0.2);
}
.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.share-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.share-modal {
    background: linear-gradient(160deg, #1a2238 0%, #2a3655 50%, #1e293b 100%);
    border-radius: 32px;
    width: 92%;
    max-width: 450px;
    padding: 0;
    position: relative;
    transform: scale(0.8) translateY(60px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 4px solid #00d4ff;
}
.share-modal-overlay.active .share-modal {
    transform: scale(1) translateY(0);
}
.modal-header {
    position: relative;
    padding: 2rem;
    background: url("https://dicerollz.com/img/share-header.webp  ");
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #00d4ff;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
}
.modal-title-main {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-top: 3.5rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 212, 255, 0.2);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #00d4ff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
}
.modal-close:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}
.modal-body {
    padding: 2.5rem 2rem;
}
.share-options-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.share-option-btn {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    background: rgba(42, 54, 85, 0.8);
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.2);
    height: 70px;
    position: relative;
    border: 2px solid transparent;
}
.share-option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.share-option-btn:hover::before {
    left: 100%;
}
.share-option-btn:hover {
    background: rgba(42, 54, 85, 1);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.4);
    border-color: #00d4ff;
}
.share-option-btn:active {
    transform: translateY(2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}
.share-option-text {
    flex: 0 0 70%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #e8eef7;
    position: relative;
    z-index: 2;
}
.share-option-icon {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.share-option-icon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.4);
}
.share-option-btn:hover .share-option-icon {
    transform: scale(1.15);
}
.share-option-btn.facebook .share-option-icon {
    background: linear-gradient(135deg, #1877F2 0%, #0D5FBF 100%);
}
.share-option-btn.whatsapp .share-option-icon {
    background: linear-gradient(135deg, #25D366 0%, #1EA952 100%);
}
.share-option-btn.copy-link .share-option-icon {
    background: var(--purple-gradient);
}
.copy-notification {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--purple-gradient);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.copy-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.share-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.share-main-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--purple-gradient);
    border: none;
    color: #e8eef7;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.share-main-btn::before {
    content: '';.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.share-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.share-modal {
    background: linear-gradient(160deg, #1a2238 0%, #2a3655 50%, #1e293b 100%);
    border-radius: 32px;
    width: 92%;
    max-width: 450px;
    padding: 0;
    position: relative;
    transform: scale(0.8) translateY(60px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 4px solid #00d4ff;
}
.share-modal-overlay.active .share-modal {
    transform: scale(1) translateY(0);
}
.modal-header {
    position: relative;
    padding: 2rem;
    background: url("https://dicerollz.com/img/share-header.webp  ");
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #00d4ff;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
}
.modal-title-main {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-top: 3.5rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 212, 255, 0.2);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #00d4ff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
}
.modal-close:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}
.modal-body {
    padding: 2.5rem 2rem;
}
.share-options-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.share-option-btn {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    background: rgba(42, 54, 85, 0.8);
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.2);
    height: 70px;
    position: relative;
    border: 2px solid transparent;
}
.share-option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.share-option-btn:hover::before {
    left: 100%;
}
.share-option-btn:hover {
    background: rgba(42, 54, 85, 1);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.4);
    border-color: #00d4ff;
}
.share-option-btn:active {
    transform: translateY(2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}
.share-option-text {
    flex: 0 0 70%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #e8eef7;
    position: relative;
    z-index: 2;
}
.share-option-icon {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.share-option-icon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.4);
}
.share-option-btn:hover .share-option-icon {
    transform: scale(1.15);
}
.share-option-btn.facebook .share-option-icon {
    background: linear-gradient(135deg, #1877F2 0%, #0D5FBF 100%);
}
.share-option-btn.whatsapp .share-option-icon {
    background: linear-gradient(135deg, #25D366 0%, #1EA952 100%);
}
.share-option-btn.copy-link .share-option-icon {
    background: var(--purple-gradient);
}
.copy-notification {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--purple-gradient);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.copy-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.share-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.share-main-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--purple-gradient);
    border: none;
    color: #e8eef7;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.share-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.share-main-btn:hover::before {
    left: 100%;
}
.share-main-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.8);
}
.share-main-btn:active {
    transform: translateY(2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.6);
}
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.share-main-btn:hover::before {
    left: 100%;
}
.share-main-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.8);
}
.share-main-btn:active {
    transform: translateY(2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.6);
}
@keyframes confetti-burst {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) rotate(var(--r)) scale(0.3); opacity: 0; }
}
@keyframes particle-explode {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}
@keyframes flash-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}
@keyframes success-pop {
    0% { transform: translate(-50%, -50%) scale(0) rotate(-180deg); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.3) rotate(10deg); opacity: 1; }
    70% { transform: translate(-50%, -50%) scale(0.9) rotate(-5deg); opacity: 1; }
    85% { transform: translate(-50%, -50%) scale(1.1) rotate(3deg); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0) rotate(0deg); opacity: 0; }
}
@keyframes coin-flip {
    0% { transform: translate(0, 0) rotateY(0deg); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) rotateY(1080deg); opacity: 0; }
}
.confetti,
.particle-burst,
.coin,
.success-text {
    position: fixed;
    pointer-events: none;
    z-index: 2000;
}
.success-text {
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.9), 
                 0 0 50px rgba(255, 215, 0, 0.7),
                 4px 4px 0 #1a2238;
}
@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(-6deg); }
    50% { transform: translate(-50%, -50%) rotate(0deg); }
    75% { transform: translate(-50%, -50%) rotate(6deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}
@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.3; }
}
@keyframes sparkle {
    0% { opacity: 0; transform: scale(0.3) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.5) rotate(180deg); }
    100% { opacity: 0; transform: scale(0.3) rotate(360deg); }
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .subscription-container {
        max-width: 48rem;
        padding: 1.5rem;
    }
    .profile-card {
        padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    }
    .share-modal {
        max-width: 500px;
    }
    .modal-title-main {
        font-size: 2.2rem;
    }
    .share-option-btn {
        height: 80px;
    }
    .share-option-text {
        font-size: 1.2rem;
    }
    .share-option-icon {
        font-size: 1.8rem;
    }
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    .faq-answer {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .share-modal {
        width: 95%;
        border-radius: 24px;
    }
    .modal-header {
        height: 160px;
        padding: 1.5rem;
    }
    .modal-title-main {
        font-size: 1.6rem;
        margin-top: 2.5rem;
    }
    .modal-body {
        padding: 2rem 1.5rem;
    }
    .share-option-btn {
        height: 60px;
    }
    .share-option-text {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    .share-option-icon {
        font-size: 1.4rem;
    }
}